ajax无限下拉

前端之家收集整理的这篇文章主要介绍了ajax无限下拉前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ajax无限下拉基本框架 实际请根据需求

$(window).scroll(function () {

    if ($(document).scrollTop() + $(window).height() >= $(document).height()) {
            $.ajax({
                url:url,type:"post",data:{"data":data},dataType: "json",success:function(data){

                }
            });
    }
});
    $(document).ready(function(){
        $("html").scrollTop(4000);
        scrollTo (0,document.height ||document.body.style.height); 
    });

猜你在找的Ajax相关文章