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

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

方案一:post

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

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

有效。.net

方案二:orm

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

 

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

相关文章
相关标签/搜索