下拉框反选的几种方式

a、根据id反选 

  1、根据传入的id直接选 $("#street option[value = "+id+"]").prop("selected",true);

(        $("#street option[value = "+id+"]").attr("selected",true) ;这个也可以用,但是有时候会有多个同时被selected情况,不建议使用)

  2、 得到下拉框的所有值循环

function mySelect(site, id) {
  for (var i = 0; i < site.options.length; i++) {
if (site.options[i].value == id) {
site.selectedIndex = i;
return;
}
}
  }

 

b.根据传入的值选中,跟id也差不多

1、$("#street option[value = "+text+"]")prop("selected",true);

    2、根据text反选 有时候第一种不知道为什么没有效果 就可以选择第二种

$("#phoneModel option").each(function(){  //遍历所有option  

               if($(this).text()==text){
 $(this).attr("selected","selected");
 }
}) 

你可能感兴趣的:(js)