在使用ui-router中用$state.go切换路由后,子页面不会回到顶部而是停留在上一个子页面对应的位置,若使用在ui-view使用autoscroll="true"的属性,当路由顶部有导航时并不能回到顶部,可以使用run配置监控路由变化:
app.run(['$rootScope', '$state', function ($rootScope, $state){
$rootScope.$on('$stateChangeSuccess',
function(event, unfoundState, fromState, fromParams){
document.body.scrollTop = document.documentElement.scrollTop = 0;
}
);
}]);