https://github.com/ehynds/jquery-ui-multiselect-widget/wiki/Methods
这真让我抓狂。列出了所有选项,但没有设置它们的方式!
我已经尝试了我能想到的一切,在构造函数中传递值,尝试调用方法来设置选项,但没有任何效果。
非常感谢帮助。
const $venueSelect = $("#venueSelect").multiselect(
{
options: {
noneSelectedText: 'MY CUSTOM TEXT' // (DOES NOT WORK)
},
close: function (event, ui) {
var venueIds = $('#venueSelect').val();
if (venueIds == '') {
window.location = '***';
} else {
window.location = `***`;
}
}
}
);