Ajax加载更多内容

时间:2018-08-28 22:33:49

标签: jquery ajax load

我想从中加载一些内容 /page-0.html?to-page=2,我当前的页面是 /page-0.html?to-page=1.

这是我的代码:

    $(document).ready(function() {

    var page = 1;

    $.get('/page-0.html?to-page=' +page, function(html) {
    if(html) {

    $('#result').append(html);
    $('#more').text('Load More Post'); //add text "Load More Post" to button again
        } else {
            $('#more').text('No more Post to load'); // when last record add text "No more posts to load" to button.
        }
    $('#more').click(function() {
    $('#more').html('<img src="ajax-loader.gif"');
    page += 1;
    });
    }, 'json');

    });

html:

    <div id="result"></div> <button id="more">Load more</button>

如果我点击加载更多按钮,它应该更改网址/page-0.html?to-page=1 to 2.,这可能吗?

我是jquery新手。有人可以帮我在这里找到我的错误吗?

1 个答案:

答案 0 :(得分:0)

尝试一下:

$(document).ready(function() {

    var page = 1;
    var getData;
    (getData = function() {
        $.get('/page-0.html?to-page=' +page, function(html) {
            if(html) {

                $('#result').append(html);
                $('#more').text('Load More Post'); //add text "Load More Post" to button again
            } else {
                $('#more').text('No more Post to load'); // when last record add text "No more posts to load" to button.
            }
        }, 'json');
    })();
    $('#more').click(function() {
        $('#more').html('<img src="ajax-loader.gif"');
        page += 1;
        getData();
    });
});

我已将getData函数用作IIFE,以便第一次自动命中请求,然后在单击更多按钮时调用该函数。 HTH