我想点击按钮时滚动到页面顶部。我该怎么做到这一点?
答案 0 :(得分:3)
您可以在按钮点击事件
中调用此内容goTop(){
window.scrollTo(0, 0);
}
答案 1 :(得分:0)
这就是答案。在OnClick函数的某个地方,我不得不说:
this.elementRef.nativeElement.querySelector('#trip-request-step-' + index ).scrollIntoView();
其中#trip-request-step是我要导航的页面中的id元素。