bootstrap-select选择/取消选择所有选项单击是否可以触发事件?

时间:2016-10-11 08:49:25

标签: jquery bootstrap-selectpicker

这可能是一个简单的问题,但我无法在任何地方找到答案或让它发挥作用。

我正在使用http://silviomoreto.github.io/bootstrap-select/插件。

当产品选择全部/取消全选时,如何触发事件?我尝试过jquery点击并更改这样的事件:

$(document).on('click','#productCategory', function(event) {
    alert("test");
});

这是我的选择列表:

<select id="productCategory" multiple data-actions-box="true">
    <option>Laptop</option>
    <option>Tablet</option>
    <option>Computer</option>
</select>

4 个答案:

答案 0 :(得分:1)

您可以在此处参考:http://silviomoreto.github.io/bootstrap-select/options/#events

$('#productCategory').on('changed.bs.select', function (e) {
  // do something...
});

答案 1 :(得分:0)

$(document).ready(function(){
    $("#productCategory").click(function(){
        alert("test");
    });

试试此代码!

答案 2 :(得分:0)

真的不明白你的问题。但你想要这样的东西吗?

让我知道

$('#productCategory').selectpicker({
  style: 'btn-info',
  size: 4
});
$(".bs-select-all").on('click', function() {
    alert("ALL SELECTED");
});
$(".bs-deselect-all").on('click', function() {
    alert("ALL DESELECTED");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.11.2/css/bootstrap-select.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.11.2/js/bootstrap-select.min.js"></script>
<select id="productCategory" multiple data-actions-box="true">
    <option>Laptop</option>
    <option>Tablet</option>
    <option>Computer</option>
</select>

答案 3 :(得分:0)

你可以这样吗

<select class="selectpicker" id="productCategory" data-live-search="true">
    <option>Laptop</option>
    <option>Tablet</option>
    <option>Computer</option>
</select>



$('#productCategory').on('change', function() {
    alert("test");
    alert($('option:selected').val());

});

这是demo:https://jsfiddle.net/ecpngmvx/15/

请包含所有链接(请参阅左侧的外部资源)