selectd选项跳转链接
作者:互联网
<select onchange="window.location=this.value;"> <option value="/">Englisth</option> <option selected="selected" value="/ch">简体中文</option> </select>
第一种:
第二种:
<select id="sel"> <!-- <option value="" disabled selected hidden>Language</option> --> <option value="/">Englisth</option> <option selected="selected" value="/ch">简体中文</option> </select> </div> <script> window.onload = initForm; function initForm() { var osel = document.getElementById("sel"); osel.selectedIndex = 0; osel.onchange = jumpPage; } function jumpPage() { var osel = document.getElementById("sel"); var newURL = osel.options[osel.selectedIndex].value; if(newURL != "") { window.location.href = newURL; } } </script>
标签:newURL,Englisth,selectd,osel,跳转,var,sel,链接,简体中文 来源: https://www.cnblogs.com/shandayuan/p/12837431.html