我使用以下代码实现了滚动条分页
var page = 1;
$(document).ready(function() {
// when we scroll, check the position:
$(window).scroll(function()
{
// if at bottom, add new content:
if ($(window).scrollTop() == $(document).height() - $(window).height())
{
page++;
var url = BASE_URL+'ajaxflokmember/'+page;
$.post(url,function(data) {
$(".flokmemberIndex").append(data );
},'html');
}
});
});
我面临以下代码没有问题,但问题是当我追加html时我必须再次包含javascript / jquery / overlay文件,因为我已经包含在父html ...
我如何才能解决这个问题....我希望我能够解决我的问题......