我的网站上有一个邮政编码提交按钮。当用户按下提交按钮时,我希望当前页面(自我)转到不同的页面(结果)以及新的标签/页面打开。这是我正在使用的。我遇到的问题是第二个窗口没有打开。其他一切都有效。我在编码方面没有太多经验。我通过搜索把这个拼凑在一起。
<form id="header-box-form" action="http://www.quotesfortermlife.com/results.html" method="get">
<input type="text" onkeypress="return submitenter(this,event)" maxlength="10" size="16" id="zipcode" name="zipcode" tabindex="1">
<input onmouseover=
"this.src='http://www.quotesfortermlife.com/pictures/orng_btn02.png';"
onmouseout="this.src='http://www.quotesfortermlife.com/pictures/orng_btn01.png';"
onclick=
"newWindow('http://www.quotesfortermlife.com/compare-rates.html','window2');window.open('http://www.quotesfortermlife.com/results.html','_self',' ')"
src="http://www.quotesfortermlife.com/pictures/orng_btn01.png"
type="image">
</form>
谢谢你尽你所能的帮助。