我的页面中有一个下拉菜单。Whenever a user is selected the option it should open a new window with the selected index url. 以下代码适用于除 Safari 以外的所有浏览器。
有什么想法可以解决这个问题吗?
<form>
<select class="searchboxproduct" style="width: 243px;" name="URL" onchange="window.open(this.form.URL.options[this.form.URL.selectedIndex].value)">
<option value="">select</option>
<option value="www.gmail.com/">Gmail</option>
<option value="www.google.com">google</option>
</select>
</form>