1.在当前页面打开新链接
<select οnchange="location.href=this.options[this.selectedIndex].value" name="" id="" ></select>
option的value里面要写好新链接的地址
2.在新窗口打开新链接
<select onchange=
"window.open(this.options[this.selectedIndex].value)"
name=
"select"
></select>
本文共 292 字,大约阅读时间需要 1 分钟。
1.在当前页面打开新链接
<select οnchange="location.href=this.options[this.selectedIndex].value" name="" id="" ></select>
option的value里面要写好新链接的地址
2.在新窗口打开新链接
<select onchange=
"window.open(this.options[this.selectedIndex].value)"
name=
"select"
></select>
转载于:https://www.cnblogs.com/Neilisme/p/7422061.html