0
我有一個jTable,我需要選擇所有行,這樣我可以稍後將信息提供給AJAX並將數據發送到控制器進行處理。jQuery jTable選擇行
我的問題是,我無法讓它工作。這是迄今爲止的JS代碼。
$('#saveButton').click(function(){
$('#UserTable').jtable("selectRows"); // I think here is the problem
var $selectedRows = $('#smsUserTable').jtable('selectedRows');
$selectedRows.each(function() {
var record = $(this).data('record');
var userId = record.userId;
console.log(userId);
});
});
我得到Uncaught TypeError:無法始終調用未定義錯誤的方法'addClass'。
也許我正在使用selectRows方法錯誤。先謝謝你。
我不認爲這是代碼的問題,因爲你不調用'addClass'任何地方。當您嘗試在本機DOM對象上使用jQuery函數時,通常會出現此錯誤。 –