方法一:
<select onchange="goUrl(this.options[this.selectedIndex])">
<option>==</option>
<option value=‘http://www.csdn.net‘ target="_blank">csdn</option>
<option value=‘http://www.163.com‘ target="_self">163.com</option>
</select>
<script>
function goUrl(obj){
if(obj.target==‘_blank‘)window.open(obj.value);
if(obj.target==‘_self‘)location.href=obj.value;
}
</script>
方法二:
TE>TE>
select页面跳转及获值
这里主要用到 :
1.window.location.href 跳转,如果想在新窗口中打开,可以用 window.open(this.options[selectedIndex].value).
2.this.options[selectedIndex].value取值.
注意:javascript是严格区分大小写的!只能写成selectedIndex.
JavaScript(select onchange)的网页跳转的简单实现
原文:http://www.cnblogs.com/shenxiaolin/p/5483471.html