我使用了How to manage pagination in multiple tables in grails?中的代码(归功于Omar Yafer)。我收到以下错误:TypeError:$ .get不是一个函数。 (在“ $ .get(linkItem.prop('href'))”中,“ $。get”未定义)。
(function($) {
$(document).ready(function() {
$(".table-container").on('click', '.paginate a',
function(event){
event.preventDefault();
var linkItem =$(this);
var target = linkItem.closest('div.table-container');
$.get(linkItem.prop('href'))
.done(function(data){
target.html(data);
}).fail(function(){
alert("There was an error loading the data");
});
});
});
}) (jQuery)
请注意,我无法在原始帖子中发表评论。抱歉。
谢谢。