首页 > 开发 > AJAX > 正文

jQuery+AJAX实现无刷新下拉加载更多

2024-09-01 08:33:32
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery+AJAX实现无刷新下拉加载更多的相关资料,需要的朋友可以参考下

随着互联网时代的发展,web前端已经和后台数据挂钩,作为web前端仅仅不是只切图写写html,css 和简单js交互。

js code

 

 
  1. $(function() { 
  2. var page = 1; 
  3. var discount = $('#discount'); 
  4. var innerHeight = window.innerHeight; 
  5. var timer2 = null
  6. $.ajax({ 
  7. url: '/lightapp/marketing/verify/apply/list?page=1'
  8. type: 'GET'
  9. dataType: 'json'
  10. timeout: '1000'
  11. cache: 'false'
  12. success: function (data) { 
  13. if (data.error_code === 0) { 
  14. var arrText = []; 
  15. for (var i = 0, t; t = data.list[i++];) { 
  16. arrText.push('<div class="consume-whole">'); 
  17. arrText.push('<h3>' + t.title + '</h3>'); 
  18. if (t.coupon_type == 1 ) { 
  19. arrText.push('<p>金额:¥' + t.amount + '</p>'); 
  20. else { 
  21. arrText.push('<p>优惠:' + t.amount + '</p>'); 
  22. arrText.push('<p><span class="hx-user">用户:s账户飒飒是是是啊啊12' + t.user_name +'</span>' + '<span>核销时间:' + t.use_time + '</span></p>'); 
  23. arrText.push('</div>'); 
  24. discount.html(arrText.join('')); 
  25. }; 
  26. var ajax_getting = false;  
  27. $(window).scroll(function() { 
  28. clearTimeout(timer2); 
  29. timer2 = setTimeout(function() { 
  30. var scrollTop = $(document.body).scrollTop();   
  31. var scrollHeight = $('body').height();   
  32. var windowHeight = innerHeight; 
  33. var scrollWhole = Math.max(scrollHeight - scrollTop - windowHeight); 
  34. if (scrollWhole < 100) { 
  35. if (ajax_getting) { 
  36. return false
  37. else { 
  38. ajax_getting = true
  39. discount.append('<div class="load"><img src="/lightapp/static/zhida-yunying/img/load.gif" width="6%" /></div>'); 
  40. $('html,body').scrollTop($(window).height() + $(document).height()); 
  41. page++; 
  42. $.ajax({ 
  43. url: '/lightapp/marketing/verify/apply/list?page=' + page, 
  44. type: 'GET'
  45. dataType: 'json'
  46. success: function (data) { 
  47. if (data.error_code === 0) { 
  48. var arrText = []; 
  49. for (var i = 0, t; t = data.list[i++];) { 
  50. arrText.push('<div class="consume-whole"><a href="/lightapp/marketing/verify/page/info?rule_id=' + t.rule_id + '&coupon_id='+ t.coupon_id +'">'); 
  51. arrText.push('<h3>' + t.title + '</h3>'); 
  52. if (t.coupon_type == 1 ) { 
  53. arrText.push('<p>金额:¥' + t.amount + '</p>'); 
  54. else { 
  55. arrText.push('<p>优惠:' + t.amount + '</p>'); 
  56. }; 
  57. arrText.push('<p><span class="hx-user">用户:账户飒111111111' + t.user_name +'</span>' + '<span>核销时间:' + t.use_time + '</span></p>'); 
  58. arrText.push('</a></div>'); 
  59. discount.append(arrText.join('')); 
  60. $(".load").remove(); 
  61. else { 
  62. $(".load").remove(); 
  63. discount.append('<div class="no-data">没有更多数据。</div>'); 
  64. $(window).unbind('scroll'); 
  65. }; 
  66. ajax_getting = false
  67. });   
  68. }; 
  69. $(".load").remove(); 
  70. }, 200); 
  71. }); 
  72. if (data.error_code == 156006) { 
  73. $('.coupon').html('<div class="error"><h2>出错啦!</h2><p>原因:未登录</p></div>'
  74. }; 
  75. if (data.error_code == 156003) { 
  76. $('.coupon').html('<div class="error"><h2>出错啦!</h2><p>原因:权限不足~请补充</p></div>'
  77. }; 
  78. if (data.error_code == 156007) { 
  79. $('.coupon').html('<div class="error"><h2>出错啦!</h2><p>原因:服务异常</p></div>'
  80. }; 
  81. if (data.error_code == 511) { 
  82. $('.coupon').html('<div class="error"><h2>出错啦!</h2><p>原因:账号未开通直达号</p></div>'
  83. }; 
  84. if (data.error_code == 520) { 
  85. $('.coupon').html('<div class="stays"><span></span><p>暂无核销记录</p></div>'
  86.  
  87. }, 
  88. error: function (data) { 
  89.  
  90. }) 
  91. $(window).bind("orientationchange"function() { 
  92. $('.sliders').css('left',$(window).width() / 2 +'px'); 
  93. }) 
  94. }) 

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表