m站设置锚点跳转到指定位置

来源:互联网 发布:三维点云数据曲面拟合 编辑:程序博客网 时间:2024/04/29 23:32
        gotoAnchor:function(options){
            var anchor = options.el;
            var $body = window.document.documentElement;
            var ua = navigator.userAgent.toLowerCase();
            if (ua.indexOf("webkit") > -1) {
                $body = window.document.body;
            }
            var pos = anchor.offset();
            $body.scrollTop = pos.top - 50;
        }
调用:
$(".link1").click(function(){
                that.gotoAnchor({el:$('#top1')});
            })
0 0
原创粉丝点击