我对角度很新,我只是开始明白一切是如何运作的。我有一个用户点击的按钮,更改页面中的一些内容,在移动设备中我需要它滚动到顶部,以便用户可以看到已更改的内容。除滚动部分外的所有工作。这就是我所拥有的:
点击的链接:
<div (click)="selectColorElement(item)"> {{item.title}}</div>
它在组件内调用的函数:
selectColorElement(selectedColor: AmbientItem){
/*Unrelated stuff that changes things in the page, I tried commenting all this and no changes*/
window.scrollTo(0,0);
}
我读了这个问题Angular2 How to scroll to top of window on user interaction但显然在这种情况下它对我没有任何作用。