码迷,mamicode.com
首页 > 编程语言 > 详细

javascript : detect at the end of bottom

时间:2014-11-16 14:42:08      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   sp   java   for   div   on   

    function isScrollBottom() {
        var documentHeight = document.documentElement.scrollHeight;
        var winHeight = document.documentElement.clientHeight;
        var scrollPosition = winHeight + getScrollTop();
        return console.log(documentHeight == scrollPosition); 
    }

    function getScrollTop() {
        if (typeof pageYOffset != ‘undefined‘) {
            //most browsers except IE before #9
            return pageYOffset;
        }
        else {
            var B = document.body; //IE ‘quirks‘
            var D = document.documentElement; //IE with doctype
            D = (D.clientHeight) ? D : B;
            return D.scrollTop;
        }
    } 

 

javascript : detect at the end of bottom

标签:blog   io   ar   os   sp   java   for   div   on   

原文地址:http://www.cnblogs.com/stooges/p/4101392.html

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