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

相關文章
相關標籤/搜索