$(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="750px; height:350px; overflow:hidden;"> <table id="dg" style="100%;height:100%"></table> </div>'; return html; }