这是用javascript设置选择/选项框的最有效方法吗?
<select id='sel_activity'>
<option value='CYC'>Cycle Count</option>
<option value='INV'>Inventory Count</option>
<option value='INVDROP'>Inventory Drop off</option>
<option value='INVPICK'>Inventory Pick up</option>
<option value='TRAIN'>Training</option>
</select>
<script type="text/javascript">
var select = 'CYC';
var myselect=document.getElementById("sel_activity")
for (var i=0; i<myselect.options.length; i++){
if (myselect.options[i].value == select)
{
myselect.options[i].selected = true;
}
else
{
myselect.options[i].selected = false;
}
}
</script>
答案 0 :(得分:3)
只要您的值是唯一的,您就可以使用document.getElementById("sel_activity").value='CYC'
代替
答案 1 :(得分:0)
如果您的速度超过代码大小,则此调整稍微更快:
var myselect=document.getElementById("sel_activity");
var len = myselect.options.length;
for (var i=0; i<len; i++){
次要说明:你错过了一个;在我的代码段的第一行末尾。