我正在尝试向我的网站添加滚动功能。该标签适用于此,如果选择了一个选项,我想加载一个新网站。这是我目前拥有的。
<body>
<script type="text/javascript">
$('document').ready(function(){
$('#button').click(function(){
var val = document.getElementById("scroll");
if(val.options[val.selectedIndex].value == 1){
window.location.replace("/passbook.html");
}else if(val.options[val.selectedIndex].value == 2){
window.location.replace("/settings.html");
}
});
});
});
</script>
<select id="scroll" style="height:50px; width:150px;" >
<optgroup label="Home">
<option value="0" >Home</option>
</optgroup>
<optgroup label="Page" >
<option value="1" >Page</option>
</optgroup>
<optgroup label="Other" >
<option value="2" >Settings</option>
</optgroup>
</select>
<button type="button">Go</button>
</body>
现在点击 go 时没有明显的变化。我想重定向到这些页面。我知道 window.location.replace(Your URL Here) 有效。有人可以帮我处理 javascript 吗?