gpt4 book ai didi

javascript - 从多选列表中删除

转载 作者:行者123 更新时间:2023-12-02 19:22:15 24 4
gpt4 key购买 nike

我需要使用 jQuery 从多个列表中删除一个项目

HTML:

<input type="checkbox" id="theCheckbox"/>
<select id="theSelect" multiple="multiple">
<option>1</option>
<option>2</option>
<option>3</option>
</select>

JavaScript:

$("#theCheckbox").change(function() {
$("#theSelect").attr("multiple", (this.checked) ? "multiple" : "");
}).change();

This is the example.

这是我的项目代码。如果您可以实现此代码,我将很高兴! My Code

最佳答案

只需选择要删除的选项并对其调用 remove() 函数即可:

$('#theSelect option:eq(1)').remove();

http://jsfiddle.net/DdhSF/162/

关于javascript - 从多选列表中删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12405912/

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