gpt4 book ai didi

javascript - 在 Angular 中滚动到(单击)特定的 div

转载 作者:搜寻专家 更新时间:2023-10-30 21:03:25 25 4
gpt4 key购买 nike

我有一个 #content div 和一个按钮组件。

当我点击按钮时,我想滚动到#content div 的顶部。


HTML:

<div id="content">
Loren ipsum
</div>
<div (click)="toTop($event)">top</div>

topscroll.component.ts:

export class TopscrollComponent implements OnInit { 
constructor() { }

ngOnInit() { }

toTop(event){
...
}
}

最佳答案

您可以使用 .scrollIntoView() 使用纯 javascript 来做到这一点:

toTop() {
document.getElementById("content").scrollIntoView();
}

注意:您不需要事件

关于javascript - 在 Angular 中滚动到(单击)特定的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51212900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com