使用scrollspy无法使$ anchorScroll正常工作

时间:2016-11-07 17:24:56

标签: javascript angularjs scrollspy

现在我正在使用angularJS和Bootstrap进行处理,出于某种原因,我无法在$ anchorScroll或scrollspy中设置偏移量。现在我正专注于尝试让$ anchorScroll工作。

    $anchorScroll.yOffset = 300;
    $scope.gotoAnchor = function(x) {
        console.log("x: ", x);
        var newHash = x;
        if ($location.hash() !== newHash) {
            // set the $location.hash to `newHash` and
            // $anchorScroll will automatically scroll to it
            $location.hash(x);
        } else {
            // call $anchorScroll() explicitly,
            // since $location.hash hasn't changed
            $anchorScroll();
        }
    };

但由于某种原因,我的yOffset被忽略了!我该如何解决?为什么被忽略?

0 个答案:

没有答案