$scope.scrollToTop = function() { $location.hash('top'); $anchorScroll(); };可以不使用$location也能使用锚点吗
时间: 2023-08-13 12:07:31 浏览: 71
不用锚点也可以平滑滚动到页面的指定位置实现代码
是的,可以不使用$location来使用锚点。你可以使用原生JavaScript的方法来实现,例如:
```
$scope.scrollToTop = function() {
document.getElementById('top').scrollIntoView();
};
```
其中,'top'是你要滚动到的元素的ID。这种方法也能够实现滚动到锚点的效果。
阅读全文