ajax.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. //});
  31. var nowHref = $(".ajaxpage").children("a:first-of-type").attr("href");
  32. var nextHref_ = $(".ajaxpage").children("a:last-of-type").attr("href");
  33. $(".case_more a").on("click",function(){
  34. if(nowHref == nextHref_ ){
  35. $(".case_more a").html("没有更多内容了").addClass("nomore");
  36. return;
  37. }
  38. $(".case_more a").html("努力加载中...");
  39. $.ajax({
  40. url: nextHref_,
  41. success:function(data){
  42. //console.log(data);
  43. setTimeout(function(){
  44. var nextHref = $(data).find(".ajaxpage").children("a:last-of-type").attr("href");
  45. if(nextHref_ != nowHref ){
  46. html = $(data).find("#ajax_list_ul").html();
  47. $("#ajax_list_ul").append(html);
  48. $(".case_more a").html("查看更多>>");
  49. nowHref = nextHref_;
  50. nextHref_ = nextHref;
  51. $(".caseList li").hover(function(){
  52. $(this).find(".mask").stop().fadeIn();
  53. $(this).find(".title").stop().animate({"bottom":"50%","opacity":"1"});
  54. $(this).find(".des").stop().delay(200).animate({"bottom":"38%","opacity":"1"});
  55. },function(){
  56. $(this).find(".mask").stop().fadeOut();
  57. $(this).find(".title").stop().animate({"bottom":"-40px","opacity":"0"});
  58. $(this).find(".des").stop().animate({"bottom":"-40px","opacity":"0"});
  59. })
  60. }else{
  61. $(".case_more a").html("没有更多内容了").addClass("nomore");
  62. }
  63. },1000)
  64. }
  65. });
  66. });