zoukankan      html  css  js  c++  java
  • 手机翻页

    <div id="newlist"></div>
    <div class="no_more" style="display:none;"><p>没有更多了!</p></div> <div class="loading loading2" style="display:none;"><p><img src="/images/loading.gif" width="30" height="30">正在努力加载中...</p</div> var pages = {:$totlepage:}; if(pages==1) { jQuery('.no_more').show(); } var page = 2, bool = true, st = jQuery(document).innerHeight(); function refresh(){ if(!bool){return;} bool = false; jQuery('.loading2').show(); jQuery('.no_more').hide(); var data = { 'page' : page } $.post( 'url', data, function(d){ if (d.length>0) { var html = ''; for (var i = 0; i < d.length; i++) { html += '<li>'; html += 'd[i].name'; html += '</li>'; }; $('#newlist').append(html); page++; st = jQuery(document).innerHeight(); bool = true; jQuery('.loading2').hide(); jQuery('.no_more').hide(); }else{ bool = false; jQuery('.no_more').show(); jQuery('.loading2').hide(); } },'json'); } $(window).scroll(function(){ if (getScrollTop() + getClientHeight() >= getScrollHeight()) { refresh(); } }); //获取滚动条当前的位置 function getScrollTop() { var scrollTop = 0; if (document.documentElement && document.documentElement.scrollTop) { scrollTop = document.documentElement.scrollTop; }else if (document.body) { scrollTop = document.body.scrollTop; } return scrollTop; } //获取当前可是范围的高度 function getClientHeight() { var clientHeight = 0; if (document.body.clientHeight && document.documentElement.clientHeight) { clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight); } else { clientHeight = Math.max(document.body.clientHeight, document.documentElement.clientHeight); } return clientHeight; } //获取文档完整的高度 function getScrollHeight() { return Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); }

      

  • 相关阅读:
    学习asp.net比较完整的流程
    时间的获取和转换,C#和Sql
    学习一种新编程语言要做的10几个练习
    分布式网络管理优点总结
    点对点网络大解析
    如何阅读他人的程序代码
    WebConfig
    正则表达式30分钟入门教程
    程序员遇到BUG的解释
    在T-SQL语句中访问远程数据库(openrowset/opendatasource/openquery)
  • 原文地址:https://www.cnblogs.com/hejianrong/p/6140618.html
Copyright © 2011-2022 走看看