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>

 

posted @ 2020-05-06 16:56  mengqiaini  阅读(163)  评论(0编辑  收藏  举报