Skip to content

{ Tag Archives } html

用div模拟窗体

不知为什么在firefox下显示不正常,而在IE下可以显示。 <div id="pop" style="border:1px solid #CCC; background-color:White;padding:3px;width:200px "> <div style="background-color:#336699;cursor:default; width:100%;float: left;"> <div style="padding-left:3px;color:White; float:left; border-width:0px;">查询</div> <div class="pdtRight" style="width:12px;border-width:0px; color:White;font-family:webdings; float: right;cursor:pointer;">r</div> </div> <div> 测试 </div> </div> 提示:你可以先修改部分代码再运行。

Also tagged ,

如何让页面关闭时,不弹出提示框

增加一个javascript函数: ?View Code JAVASCRIPTfunction closewindow(){ window.opener = null; window.open(”, ‘_self’, ”); window.close(); } 在关闭时调用该函数。 ?View Code HTML4STRICT<input type="button" value="关闭" onclick="closewindow()" />

Also tagged