码迷,mamicode.com
首页 > Web开发 > 详细

jQuery实现动态选中select

时间:2017-03-31 19:44:30      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:jquer   jquery   span   size   ons   selected   动态   blog   log   

// jquery实现动态选中select

var active = $(‘.all_sla_title1 .active‘)
var group_name = active.html();
var sla = active.attr(‘data-sla‘);
var remote = active.attr(‘data-remote‘);
 // console.log(group_name + sla + remote);
$.each($(‘#sla option‘), function(i, n) {
    if ($(n).val() == sla) {
        $(n).attr("selected", true);
    }
});

 

jQuery实现动态选中select

标签:jquer   jquery   span   size   ons   selected   动态   blog   log   

原文地址:http://www.cnblogs.com/gentsir/p/6653092.html

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