3

我有两个引导多选下拉菜单。我的要求是,如果我从第一个下拉列表中选择任何一个选项,则应从第二个下拉列表中删除所选选项。此外,如果我取消选择它,那么它应该添加到第二个下拉列表中。

这是链接

https://jsfiddle.net/cpxavier/6escna8k

4

2 回答 2

0

我不知道你想实现多选。

但是这个 jQuery 库非常适合多选,易于操作且更灵活。

jQuery 魔术建议

有良好的文件

于 2015-06-06T16:33:42.180 回答
0

更改您的文档。准备好

$(document).ready(function() {
    $('.multi2').multiselect({ // this is the second multiselect
        includeSelectAllOption: false,
        nonSelectedText: 'Select Teams',
    });
    $('.multi1').multiselect({ // this is the first multiselect
        includeSelectAllOption: false,
        nonSelectedText: 'Select Teams',
        onChange: function(option, checked, select) { // implement onChange listener
        // clear all selection of the second dropdown - This will be called whenever there's a change in the first multiselect
        // You can think of puting in some additional conditions here.
            $('.multi2').multiselect('clearSelection', false);
        }
    });
});

您还需要将您的 html 更新为 -

<select id="team0" name="team0[]" class="multi1" multiple="multiple"><!-- first dropdown-->

<select id="team1" name="team0[]" class="multi2" multiple="multiple"><!-- second dropdown-->

<iframe width="100%" height="300" src="//jsfiddle.net/yellen/fw32gwd2/embedded/" allowfullscreen="allowfullscreen" frameborder="0"></iframe>

更多参考:http ://davidstutz.github.io/bootstrap-multiselect/#methods

于 2015-06-08T07:36:08.777 回答