码迷,mamicode.com
首页 > Web开发 > 详细

js 窗口滚动到一定高度时加载数据

时间:2015-03-11 18:56:50      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
        //当窗口滚动到一定高度时 某块页面开始加载数据
        window.onload = function()
        {
            var oHeader = document.getElementById("header");
            var height = oHeader.offsetHeight;
            
            window.onscroll = function(){
                //scrollTop的值
                var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
                //窗口可视化高度
                var clientHeight = document.documentElement.clientHeight || document.body.clientHeight;
                document.getElementById("txt1").value="scrollTop:"+scrollTop+",height:"+height;
                var oContent = document.getElementById("content");
                
                if(scrollTop+clientHeight >height)
                {
                   oContent.innerHTML = "<h1>正在加载中.....</h1>";
                   
                   //延迟3秒执行
                   setTimeout(function(){
                     oContent.innerHTML = "<h1>scroll事件执行的代码块</h1>";
                     oContent.style.background="red";
                   },3000);  
                  
                }
                else
                {
                    oContent.innerHTML="";
                    oContent.removeAttribute("style");
                }
            }
        }
    </script>

 

js 窗口滚动到一定高度时加载数据

标签:

原文地址:http://www.cnblogs.com/zoro-zero/p/4330249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!