ウェブサイトに郵便番号送信ボタンがあります。ユーザーが送信ボタンを押すと、現在のページ (自己) が別のページ (結果) に移動し、新しいタブ/ページが開くようにしたいと考えています。これが私が使用しているものです。私が抱えている問題は、2 番目のウィンドウが開かないことです。他のすべてが機能します。私はコーディングの経験があまりありません。検索でまとめてみました。
<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>
ご協力いただきありがとうございます。