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

Posted 现在与未来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了select中的option被选中时页面的跳转相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src=‘js/jquery.min.js‘></script>
</head>
<body>
<select name="" id=‘selectId‘>
<option value="0">--请选择--</option>
<option value="1">a</option>
<option value="2">b</option>
<option value="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被选中时页面的跳转的主要内容,如果未能解决你的问题,请参考以下文章

web中的跳转语句 java中的跳转语句

iframe嵌套页面中的跳转

java servlet中的跳转页面的问题

代码设定的按钮与storyboard中的xib页面间的跳转

JSP页面的跳转及传值

怎样使得页面的跳转一直在iframe里进行,不会跳出iframe