使用在同一页面中使用的定位标记,而不在另一个组件的不同页面中使用?但我想导航到其他页面的特定部分。
//htmlcode
<button (click)="onClick()">click me</button>
<div id="hello">your section</div>
//.ts file
onClick()
{
let select = document.querySelector("#hello");
if (select)
{
select.scrollIntoView();
}
}
在上面,我正在使用click方法使用角度的按钮和scrollview功能进行导航吗?