0

我需要使用 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();

这就是例子。

这是我的项目代码。如果您可以在此代码上实现,我会很高兴! 我的代码

4

3 回答 3

2

只需选择要删除的选项并remove()在其上调用函数:

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

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

于 2012-09-13T12:12:04.637 回答
0

删除多选列表见此编辑

两种条件都有效。

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

$('a').click(function() {
    $('#theSelect option:selected').remove();
});
于 2012-09-13T12:21:23.990 回答
0
$('#theSelect').change(function(){
    var selectedIndex = $(this)[0].selectedIndex;
    //alert(selectedIndex);
    var selected = $(this).children("option").eq(selectedIndex);
    selected.remove();
});
$("#theCheckbox").change(function() {
    $("#theSelect").attr("multiple", (this.checked) ? "multiple" : "");
}).change();​
于 2012-09-13T12:26:06.697 回答