selectd选项跳转链接


            <select onchange="window.location=this.value;">
                        <option value="/">Englisthoption>
                        <option selected="selected" value="/ch">简体中文option>
                    select>

第一种:

第二种:

       <select id="sel">
                    
                    <option value="/">Englisthoption>
                    <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>

相关