1
我有了選擇所有選項默認爲選中一個jQuery多選。 每當選定選項發生變化時,我都會相應地重新加載頁面數據。jQuery的多選 - 選擇所有事件處理程序
一切正常,除了偉大的「全選」按鈕,點擊並不會觸發onChange事件,我不能被點擊時重新加載數據。我嘗試附加事件處理程序checkAll和selectAll以及但無濟於事。
$("#testselect").multiselect({
nonSelectedText: 'None',
allSelectedText: 'All Selected',
includeSelectAllOption: true,
buttonWidth: '100%',
checkAll: function() {
alert("check all"); // Doesn't work
},
selectAll: function() {
alert("select all"); // Doesn't work
},
onChange: function (option, checked, select) {
alert("onchange") // Works but not for 'All Selected'
// Do something
}
});
$("#testselect").multiselect('selectAll', false);
$("#testselect").multiselect('updateButtonText');
這是您使用多選? http://www.erichynds.com/blog/jquery-ui-multiselect-widget因爲我看不到onChange()方法 –