为Jquery Chosen AngularJS添加一个select all选项

时间:2014-10-24 22:15:39

标签: jquery jquery-chosen

我尝试添加一个select all选项。出于某种原因,我只能选择尚未选择的下一个选项,而不是所有选项。有什么想法吗?

 // select all chosen
    $(document).on('click', '.group-result', function() { //modify this to be based off of superheroes
        var unselected = $(this).nextUntil('.group-result').not('.result-selected');
        if(unselected.length) {
            unselected.trigger('mouseup'); //bug - only selects one at a time
        }
    });

0 个答案:

没有答案