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>
原文地址:https://www.cnblogs.com/shandayuan/p/12837431.html