首页 > 其他 > 详细

div 滚动定位代码

时间:2015-01-23 12:52:14      阅读:263      评论:0      收藏:0      [点我收藏+]


        var thisheith;
        $(function () {
            var divid = ‘#14681-121320-197209‘;
            $(divid).find("a").addClass("c-red").addClass("b");
            $(divid).bind("click", function () {
                change(this);
            });
            $(divid).click();
            ScrollDiv();
        });
        function ScrollDiv() {
            var ex = document.getElementById("nav");
            ex.scrollTop = thisheith-200;
        }
        function change(elem) {
            thisheith= getTop(elem);
        }
        function getTop(e) {
            var offset = e.offsetTop;
            if (e.offsetParent != null) {
                offset += getTop(e.offsetParent);
            }
            return offset;

        }

div 滚动定位代码

原文:http://www.cnblogs.com/wdkshy/p/4243705.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!