滑动吸顶下来加载

132 阅读1分钟

var tab_height = document.getElementById('nav').offsetTop; document.onscroll = function() { var acroll_height = document.body.scrollTop || document.documentElement.scrollTop; if (acroll_height > tab_height) { document.getElementById('nav').className = 'tab tabfixed'; } else { document.getElementById('nav').className = 'tab'; } // 判断是否到达底部 // var scrollTop = ((window)).scrollTop(); // var scrollHeight = (document).height();
      // var windowHeight =($(window)).height(); // if (scrollTop + windowHeight == scrollHeight) { // self._getData(); // } };