小编典典

向下滚动如何进行Ajax调用并获取重发数据

ajax

请大家帮我向下滚动时如何拨打Ajax电话


阅读 192

收藏
2020-07-26

共1个答案

小编典典

var no=1;
$(window).scroll(function () {
    if(no==1)
    {
        if ($(window).height() + $(window).scrollTop() == $(document).height()) {
            no=2;
            $.ajax({
                type: "POST",
                url: "request.php",
                data: datas,
                cache: false,
                success: function(html){

                }
            });
        }
    }
});

当用户到达页面末尾时,这会进行ajax调用。

您可以指定其发生的高度。

2020-07-26