IE6使用window.showModalDialog打开的页面,Form提交会打开新窗口

参考:http://bbs.csdn.net/topics/70258800

方案一:

the simple method is to add a line in the header part of your html

<head>
<base target="_self">
</head>
<body>
...
</body>

有效。

方案二:

你在showModalDialog打开的页里加一个
<iframe height="0px" width="0px" name="frmpost" id="frmpost" src="about:blank"></iframe>
把你的form的target="frmpost"

 

未测试,IE6以上直接采用第一种方法吧。

你可能感兴趣的:(IE6使用window.showModalDialog打开的页面,Form提交会打开新窗口)