首页 > html的window怎么使用?如何让这个窗口默认是关闭的?

html的window怎么使用?如何让这个窗口默认是关闭的?

1.代码如下:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Basic Window - jQuery EasyUI Demo</title>
    <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
    <link rel="stylesheet" type="text/css" href="../demo.css">
    <script type="text/javascript" src="../../jquery.min.js"></script>
    <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
    <h2>Basic Window</h2>
    <p>Window can be dragged freely on screen.</p>
    <div style="margin:20px 0;">
        <a href="javascript:void(0)" class="easyui-linkbutton" onclick="$('#w').window('open')">Open</a>
        <a href="javascript:void(0)" class="easyui-linkbutton" onclick="$('#w').window('close')">Close</a>
    </div>
    <div id="w" class="easyui-window" title="Basic Window学习" data-options="iconCls:'icon-save'" style="width:750px;height:500px;padding:10px;">
        就是这个窗口。。。。。。
    </div>
</body>
</html>

2.打开这个网页总是默认是打开这个窗口的,不知道怎么解决。求助。

【热门文章】
【热门文章】