欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决IE使用模态窗口提交表单时跳出新窗口问题 iejavascriptshowmodaldialog 

程序员文章站 2022-06-08 11:29:25
...

   在IE浏览器下使用JavaScript打开模态窗口

window.showModalDialog(url,window,'dialogWidth:600px;dialogHeight:400px');

但在提交模态窗口上的表单时有时会跳出一个新的窗口,解决:

<form name="f1" method="post" runat="server" target="abc" >
            <iframe name="abc"   width="0px"   height="0px"   frameborder="0"    style="display:none"> </iframe>

.......

</form>

 

至于为什么会跳出新窗口,原因不明。