EasyUI中Dialog的使用
$(function () { $('<div id="dlgContent"></div>').appendTo($('body')); $('#dlgContent').append(getHtml()); $.parser.parse('#dlgContent'); }); var getHtml = function GetDialogHtml() { var html = '<div id="dialog" class="easyui-dialog" title="详细信息"\ data-options="closed:true"\ style="width:750px; height:350px; overflow:hidden;">\ <table id="dg" style="width:100%;height:100%"></table>\ </div>'; return html; }