- 如何让下拉式菜单中的链接来打开一个新的窗口?
-
发布时间:2010-11-09 13:44:52
发布时间:2010-11-09 13:44:52
先把下拉式菜单设置好,如:
<form method=\"POST\" >
<select name=\"D1\" size=\"1\">
<option value=\"http://member.netease.com/~tiatnao/\">田涛站点</option>
<option value=\"http://webfaq.126.com/\">网页制作常见问题解答</option>
</select><input type=\"submit\" value=\"Submit\" name=\"B1\"><input type=\"reset\" value=\"Reset\"
name=\"B2\"></p>
</form>
然后把<select name=\"D1\" size=\"1\">改为
<select onChange=\"javascript:window.open(this.options[this.selectedIndex].value)\" > 即可。