我有兩個按鈕提交表單。在新窗口中打開窗體
的代碼是:
<form action="index.php" method="get">
<table cellpadding="2" cellspacing="3">
<tr>
<td><input type="text" name="q" size="20" /></td>
</tr>
<tr>
<td>
<input type="submit" name="site" value="site search" class="submit" />
<input type="submit" name="google" value="google search" class="submit" />
</td>
</tr>
</table>
</form>
我想的是,如果你按下按鈕,谷歌搜索結果會在新窗口中打開。我認爲它應該用JavaScript來完成。
不是JavaScript,只需在表單標籤上設置target =「_ blank」即可。 – switz
可能重複[如何在新窗口中打開窗體結果?](http://stackoverflow.com/questions/4866782/how-can-i-open-a-form-result-in-a-new -window) –