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); }

      

  • 相关阅读:
    os.environ的详解
    request.headers.get头部获取内容的缺失
    mysql根据逗号分割的字符串去关联查询另外一个表的数据
    Flask路由中使用正则表达式匹配
    Mac OS下安装mysqlclient遇到的一些坑
    【uWSGI】 listen queue of socket (fd: 3) 错误分析
    redis zset底层实现原理
    计算机网络05 传输层
    计算机网络04 网络层
    计算机网络03 数据链路层
  • 原文地址:https://www.cnblogs.com/hejianrong/p/6140618.html
Copyright © 2011-2022 走看看