基于jquery鼠标或者移动端滚动加载数据

基于jquery鼠标或者移动端滚动加载数据

 var stop = true; // 防止重复请求数据
 $(window).scroll(function () {
     totalheight = parseInt($(window).height()) + parseInt($(window).scrollTop());
     if ($(document).height() <= totalheight) {
         if (stop == true) {
             stop = false;
             $.post("loadContent1.html", function (data) {
                 stop = true;
             }, "html");
         }
     }
 });
上一篇:雷林鹏分享:jQuery EasyUI 树形菜单 - 树形菜单加载父/子节点


下一篇:nginx日志相关运维操作记录