Meteor + Iron Router 无法向上滚动

Meteor + Iron Router unable to scroll up

我尝试过使用像 scrollTo(0) 这样的命令和像 okgrow:router-autoscroll 这样的包。我已经在线阅读了很多页面。我完全无法做到,当我通过路由(Iron Router)加载新模板时,它会自动滚动到顶部。

编辑:我尝试了以下所有方法均无济于事:

$(window).scrollTop()
$('body, html').scrollTop()
$('body').scrollTop()
$(document).scrollTop()
window.scrollTo(x, y)

对于那些有同样问题的人。我最终使用以下代码在所有浏览器中解决了这个问题:

Template.templateName.onRendered(function(){
    $('.wrapper-header')[0].scrollIntoView();
});

这应该像我一样在所有浏览器中工作,并且消除了 flowrouter 和 Iron Router autoscroll 插件的必要性。

希望对您有所帮助!