码迷,mamicode.com
首页 > 其他好文 > 详细

div 滚动定位代码

时间:2015-01-23 12:53:46      阅读:157      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!