gpt4 book ai didi

javascript - getElementById selected 不能选择多个选项

转载 作者:可可西里 更新时间:2023-11-01 14:52:02 25 4
gpt4 key购买 nike

我在 javascript 中有一个函数应该允许我选择多个选项,但它只选择第一个。

Javascript:

 function index(){
var a="${staffindex}".replace("[","");
var b=a.replace("]","");
var index1=b.split(",");
for(var i=0;i<index1.length;i++)
document.getElementById("Staff")[index1[i]].selected=true;
}

HTML:

<select multiple="multiple" id="Staff" name=staff>
<option value = "1" >option1</option>
<option value = "2" >option2</option>
<option value = "3" >option3</option>
<option value = "4" >option4</option>
<option value = "5" >option5</option>
</select>

index1 是从 java 类接收的数字数组。
感谢您的帮助!

最佳答案

你忘记使用options数组:

document.getElementById("Staff").options[index1[i]].selected=true;

关于javascript - getElementById selected 不能选择多个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17047197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com