<form name="test">
<select name="choose" style="width:300px;">
<option selected="">Select option</option>
<option value="http://url.com">Test</option>
</select>
<input onclick="location=document.test.choose.options[document.test.choose.selectedIndex].value;" value="Take me there!" type="button"></p>
</form>
我使用以下内容制作下拉列表,只是想知道如何在新选项卡中而不是在其自己的窗口中选择打开
工作正常,因为它只需要它在新标签中打开。
* 编辑 *
这根据需要工作谢谢
<input onClick="window.open(document.test.choose.options[document.test.choose.selectedIndex].value);" value="Take me there!" type="button">