循环使用 var westring 给了我最后一个 li。有没有办法将其附加或附加到帖子 URL?
$(document).ready(function() {
var westring = '0';
$('#infinite_topic_scroll').scrollLoad({
url : '/challenges_side.php?f=hh&start_res='+westring+'&v=y',
getData : function() { },
start : function() { $('<div class="loading"><img src="/images/ajax-loader.gif"/></div>').appendTo(this); },
ScrollAfterHeight : 95,
onload : function( data ) {
$(this).append( data );
$('.loading').remove();
},
continueWhile : function( resp ) {
var westring = ($(this).children('li').length);
// alert(westring);
if( $(this).children('li').length >= 100 ) { return false; }
return true;
}
});
});