showModalDialog提交的问题,如何让其不出现新页面!!!

showModalDialog中点确定按钮提交,总会出现一个新的页面,如何让其不出现
---------------------------------------------------------------

办法:
window.showModalDialog("xxx.htm")

xx.htm

1<frameset rows="0,*">
2<frame src="about:blank"/>
3<frame src="xxx.asp"/>
4</frameset>

xxx.asp

1<form method="post" target="_self"></form>
Published At
Categories with Web编程
Tagged with
comments powered by Disqus