我正在尝试使用此处找到的 jquery uix 多选插件:
https://github.com/yanickrochon/jquery.uix.multiselect
它工作正常,除了我需要默认折叠我的 optgroup。如何才能做到这一点?
我正在尝试使用此处找到的 jquery uix 多选插件:
https://github.com/yanickrochon/jquery.uix.multiselect
它工作正常,除了我需要默认折叠我的 optgroup。如何才能做到这一点?
有文档链接
collapsableGroups (boolean) (default: true) :告诉选项组是否可以折叠
// initialize option
$(selector).multiselect({ collapsableGroups: false });
或者这个
var sel = $("#yourSelect").multiselect();
setTimeout(function() { // let the refresh method happen
$("#multiselect_groups").next().find("div.group-element").parent()
.each(function() {
if ($(this).data("fnToggle")) $(this).data("fnToggle")();
});
}, 10);