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