jQuery实现动态选中select
Posted gentsir
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现动态选中select相关的知识,希望对你有一定的参考价值。
// 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的主要内容,如果未能解决你的问题,请参考以下文章
Jquery chosen动态设置值 select Ajax动态载入数据 设置chosen和获取他们选中的值