dojo 弹出窗口,隐藏窗口

前端之家收集整理的这篇文章主要介绍了dojo 弹出窗口,隐藏窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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","block");

3.弹出窗隐藏代码

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

原文链接:https://www.f2er.com/dojo/291425.html

猜你在找的Dojo相关文章