zoukankan      html  css  js  c++  java
  • 兼容IE8,滚动加载下一页

    // 滚动加载下一页
            var nowScrolledHeight = document.documentElement.scrollTop || document.body.scrollTop;
            var docHeight = document.body.clientHeight;
            if(window.innerHeight!= undefined){
                var pageHeight = window.innerHeight;
            } else{
                var B= document.body, D= document.documentElement;
                var pageHeight = Math.min(D.clientHeight, B.clientHeight);
            }
            var go = parseInt(docHeight) - parseInt(pageHeight + 20);
            console.log(nowScrolledHeight)
            console.log(docHeight)
            console.log(pageHeight)
            console.log(go)
            if (nowScrolledHeight >= go && hasNext) {
                console.log('滚动成功');
                pageIndex++;
                searchGoods(word, pageIndex, orderType);
                $(".data_loading").show();
                $(".data_lastpage").hide();
            } else if(!hasNext){
                $(".data_loading").hide();
                $(".data_lastpage").show();
            }
  • 相关阅读:
    8月4日
    8月3日 hive配置
    8月2日
    8月1日
    7月31日
    7月30日
    7月29日
    7月28日
    第六周总结
    重大技术需求进度报告一
  • 原文地址:https://www.cnblogs.com/yangjing1314/p/10333195.html
Copyright © 2011-2022 走看看