>  기사  >  백엔드 개발  >  html的window怎么使用?如何让这个窗口默认是关闭的?

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

WBOY
WBOY원래의
2016-06-06 20:17:341192검색

1.代码如下:

<code>


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


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


</code>

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

回复内容:

1.代码如下:

<code>


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


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


</code>

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.