我需要在 jQuery .load 调用之后执行一个操作,目前这是我的代码:
function ajax_autopaginate(a, b) {
function incrementPage () {
next_page += 1;
next_previews += 32;
}
jQuery('#' + b).load( a , incrementPage)
}
但我只需要在 .load 完成后运行 incrementPage 函数,我该怎么做?