首页 > 代码库 > select中的option被选中时页面的跳转

select中的option被选中时页面的跳转

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src=http://www.mamicode.com/‘js/jquery.min.js‘></script>
</head>
<body>
<select name="" id=‘selectId‘>
<option value="http://www.mamicode.com/0">--请选择--</option>
<option value="http://www.mamicode.com/1">a</option>
<option value="http://www.mamicode.com/2">b</option>
<option value="http://www.mamicode.com/3">c</option>

</select>

<script>
$(function (){
$(‘#selectId‘).on(‘change‘,function(){
var selectId = $(‘#selectId option:selected‘);
if(selectId.val()==1){
window.open(‘pink.html‘);
}else if(selectId.val()==2){
window.open(‘blue.html‘);
}else if(selectId.val()==3){

window.open("green.html");
})

});
</script>
</body>
</html>

window.open();是jquery中用来打开链接的地址。pink.html、blue.html、green.html这些是要跳转到的页面。

select中的option被选中时页面的跳转