好像也叫easyui吧,
最近想做个东西,
需要的功能(组件)主要包括:
splitter(能拖动的分割区域), 右键菜单, 树形列表,等,
看到easyui都有
但是这厮把事件回调函数都都写在html的属性里真的有点不习惯额
<div id="dlg" class="easyui-dialog" title="Toolbar and Buttons" style="width:400px;height:200px;padding:10px"
data-options="
iconCls: 'icon-save',
toolbar: [{
text:'Add',
iconCls:'icon-add',
handler:function(){
alert('add')
}
},'-',{
text:'Save',
iconCls:'icon-save',
handler:function(){
alert('save')
}
}],
buttons: [{
text:'Ok',
iconCls:'icon-ok',
handler:function(){
alert('ok');
}
},{
text:'Cancel',
handler:function(){
alert('cancel');;
}
}]
">
The dialog content.
</div>
其实jquery-ui就方便很多, 但是组建少些, 也没这个pp,
jquery-ui: $('#dilg').dialog({xxx}) ...
这个有法破么? 还是换别的框架?
--
FROM 182.203.164.*