获取滚动条的距离

 <script type="text/javascript">

            $(document).ready(function() {

                $(window).scroll(function() {

                    //$(document).scrollTop() 获取垂直滚动的距离

                    //$(document).scrollLeft() 这是获取水平滚动条的距离

                    if ($(document).scrollTop() <= 0) {

                        alert("滚动条已经到达顶部为0");

                    }

                    if ($(document).scrollTop() >= $(document).height() - $(window).height()) {
                        alert("滚动条已经到达底部为" + $(document).scrollTop());
                    }
                });
            });


script>

 

转载于:https://www.cnblogs.com/zxcc/p/7838988.html

你可能感兴趣的:(获取滚动条的距离)