当前位置 : 主页 > 网页制作 > Dojo >

dojo 弹出窗口,隐藏窗口

来源:互联网 收集:自由互联 发布时间:2021-06-15
1.写一个div,使其class为white_content,uniteRadioDIV为最上面的div,第二个div设置间隔,第三个div是主题内容。并设置好id,在最下面设置好 确定和关闭按钮 div id="query_brand"class="white_content"

1. 写一个div,使其class为white_content,uniteRadioDIV为最上面的div,第二个div设置间隔,第三个div是主题内容。并设置好id,在最下面设置好 确定和关闭按钮

<div  id="query_brand"  class="white_content">

<div id="uniteRadioDIV" >
请选择要合并到的商户:<br />
</div>

      <div style="padding: 5px;height: 30px;"><!-- blank div --></div>
      <br/>

      <div style="border:1px solid #000;padding:5px">
      <table id="branchsTable">
      <tr>
      <th><input type='checkbox'  name='brandcheckboxes' onchange="checkedAll()" /></th>
      <th>名称</th>
      <th>别名</th>
      <th>专柜名称</th>
      <th>专柜号</th>
      </tr>
      </table>
      <br/>
      </div>
<div style="padding: 5px;height: 50px;"><!-- blank div --></div>

       <p style="text-align:center;">
      <input type="button"  value="确 定" onclick="addBrands()"/> &amp;nbsp;&amp;nbsp;&amp;nbsp; 
            <input type="button"  value="关 闭" onclick="closeQueryBrand()"/>
      </p>

</div>

2. 弹出窗 显示代码 

dojo.style("fade","display","block");
dojo.style("query_brand","display","block");

3.弹出窗隐藏代码

dojo.style("fade","display","none"); dojo.style("query_brand","display","none"); dojo.query('.queryShopData').forEach(dojo.destroy);//摧毁下次弹出不要的东西,创建的时候设置其class,然后根据class摧毁。

网友评论