js select跳转功能的例子

发布时间:2020-03-05编辑:脚本学堂
有关js中实现select跳转的方法,通过location.href获取跳转地址,不错的js select跳转代码的小例子,需要的朋友参考下。

js实现select跳转功能:
 

复制代码 代码示例:
<!DOCTYPE html>
<html>
<head>
<title>js select跳转代码 - www.jb200.com</title>
</head>
<body>
<div class="selectBox">
<select class="toSlt">
<option href="/pro-161264/">全部分类的商品</option>
<option href="/">普通车床</option>
<option href="/brand/">回转车床</option>
<option href="/">普通车床</option>
<option href="/brand/">回转车床</option>
</select>
</div>
<script type="text/javascript" src="../js/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
 
$(function(){
var $body = $('body');
$body.on('change', 'select:has(option[href])', function(e) {
var _this = $(this),
_href = _this.find('option:selected').attr('href');//获取要跳转的地址
location.href = _href; //跳转
})
})
</script>
</body>
</html>