<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Insert title here</title> <%@ include file="/jsp/common/include/easyui_nopager.jsp"%> </head> <body> <button onclick="showDialog()">POP</button> <!-- 弹窗 start--> <div id="dlg" class="easyui-dialog" title="Complex Toolbar on Dialog" style="width: 800px; height: 400px; padding: 10px"> <!-- jsp page --> </div> <!-- 弹窗 end--> <script type="text/javascript"> $(document).ready(function() { $("#dlg").dialog(‘close‘); }); function showDialog() { $("#dlg").dialog(‘open‘); } </script> </body> </html>
时间: 2024-11-03 21:57:44