我是AngularJS的新手。我在AngularJS中弹出一个问题。当我第一次打开弹出窗口时,我滚动到底部。在那之后,我重新打开那个弹出窗口,它仍然停留在底部,但我希望它保持在顶部。你能为我提出解决方案吗?
答案 0 :(得分:0)
你可以在显示弹出窗口的函数中使用$ anchorScroll
$scope.openPopup = function() {
// set the hash to the id of
// an element at the top of your popup to scroll to.
$location.hash('hash');
$anchorScroll();
};
您可以在角度api here
上找到更多信息