0

Javascript代码:

var next_page = 2;
var next_previews = 36;

function ajax_autopaginate(a, b) {
    function incrementPage () {

        next_page += 1;
        next_previews += 36;

    }

    jQuery('#' + b).load(a , function() {
        incrementPage();
        setTimeout(pollScrollPosition, 500);
    });
}

function pollScrollPosition() {
var y = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;

var max = window.scrollMaxY || (document.body.scrollHeight - document.body.clientHeight);

if ((max - y) <= 1500) {
    ajax_autopaginate('http://www.wallpaperup.com/welcome/get_wallpapers/date_added/DESC/' + next_previews + '/','content' + next_page);
} else {
    setTimeout(pollScrollPosition, 500);
}
}

setTimeout(pollScrollPosition, 500);

如果我们距离页面末尾 1500px 或更小,我正在使用此代码执行一个函数,在 Firefox 中一切正常,但在 IE 和 Chrome 中,该函数总是执行,我应该如何修复它?

这是给我带来问题的页面:http ://www.wallpaperup.com/

4

0 回答 0