zno2

easyui-dialog 弹窗

<!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>

 

分类:

技术点:

相关文章:

  • 2021-09-20
  • 2021-08-07
  • 2021-09-20
  • 2021-12-26
  • 2021-09-20
  • 2021-09-20
  • 2021-09-20
  • 2021-09-20
猜你喜欢
  • 2021-09-20
  • 2021-09-20
  • 2021-09-20
  • 2021-08-08
  • 2020-10-25
  • 2021-10-19
  • 2021-09-03
相关资源
相似解决方案