Posted in Javascript onOctober 22, 2014
js简单实现select跳转功能:代码如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <div class="selectBox"> <select class="toSlt"> <option href="http://jichuang.gongchang.cn/pro-161264/">全部分类的商品</option> <option href="http://jichuang.gongchang.cn/">普通车床</option> <option href="http://jichuang.gongchang.cn/brand/">回转车床</option> <option href="http://jichuang.gongchang.cn/">普通车床</option> <option href="http://jichuang.gongchang.cn/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>
js实现select跳转功能代码
- Author -
whsnow声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@