码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-04-25 17:00:31      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:跳转   func   pen   var   lan   function   document   地址   src   

<!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被选中时页面的跳转

标签:跳转   func   pen   var   lan   function   document   地址   src   

原文地址:http://www.cnblogs.com/now-future/p/6762362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!