如何将数组为同一类select循环赋值

dom:


<select class="time_start_hour"></select>

<select class="time_start_hour"></select>

<select class="time_start_hour"></select>

<select class="time_start_hour"></select>


中间为select添加option选项的js语句就不贴了


js


var xxx =[12,06,08,20]

 var SelectArr = $(".time_start_hour");//循环select

  for (var i = 0; i < SelectArr.length; i++) {

      var select = $(SelectArr[i]);

       select.options[???].selected = true;//这里如何对应数组的某一项进行赋值?

  }


一只萌萌小番薯
浏览 462回答 1
1回答

qq_遁去的一_1

在中间继续循环 select 里面的 options,然后在你希望改变的 option ,改变它的值。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript