如何在 scrollExtend 上调用函数。我需要下面的代码,但它不能正常工作。如何让它发挥作用?
$(document).ready(
function() {
$('#scrollBox').scrollExtend(function() {
//alert('scroll extend working');
//functionCall();
});
}
);
但是scrollExtend的实际代码如下所示,我不知道如何调用它的函数,
jQuery('.scroll_container').scrollExtend({
'target': 'div#scroll_items',
'url': 'more_content.html',
'newElementClass': 'list_item more_content'
});