Easyui dialog 載入內容檢視
阿新 • • 發佈:2019-01-05
Easui dialog 載入內容檢視:
Html 準備dialog 容器
<div id="dlg_Insert">
</div>
JS 載入新增檢視到 dialog
// //開啟新增面版 function OpenInsertView() { $('#dlg_Insert').dialog({ title: '新增連結', iconCls:"icon-edit", collapsible: true, minimizable: true, maximizable: true, resizable: true, width: 400, height:240, modal: true, href: "xxxxxx/xxxxxx", onClose: function () { alert("Close"); }, buttons: [ { text: 'save', iconCls: 'icon-save', handler: function () { alert("Save"); } },{ text: 'Cancel', iconCls: 'icon-cancel', handler: function () { $('#dlg_Insert').dialog('close'); } }] }); }