ajax.js 1.1 KB

123456789101112131415161718192021222324252627282930
  1. a = 1;
  2. $(window.document).on("scroll",function(){
  3. if( $(document).scrollTop() + $(window).height() > $(document).height() - 20 && a==1) {
  4. a = 0;
  5. $(".fixedloading,.fixedloadingbg").fadeIn(300);
  6. $(".ajax_tips").html("努力加载中...");
  7. $.ajax( {
  8. url: $("#page_ajax").attr("href"),
  9. success:function(data){
  10. setTimeout(function(){
  11. var nowHref = $("#page_ajax_now").attr("href"),
  12. nextHref = $("#page_ajax").attr("href"),
  13. datanextHref = jQuery(data).find("#page_ajax").attr("href"),
  14. datanowHref = jQuery(data).find("#page_ajax_now").attr("href");
  15. if(nowHref != nextHref){
  16. $("#page_ajax").attr("href",datanextHref);
  17. $("#page_ajax_now").attr("href",datanowHref);
  18. html = $(data).find("#ajax_list_ul").html();
  19. $("#ajax_list_ul").append(html);
  20. $(".ajax_tips").html("下拉加载更多...");
  21. a = 1;
  22. }else{
  23. $(".ajax_tips").html("没有更多内容了!").addClass("nomore");
  24. }
  25. $(".fixedloading,.fixedloadingbg").fadeOut(300);
  26. },1000)
  27. }
  28. });
  29. }
  30. });