Angular 2,如何使href指向本地div?

时间:2016-04-20 15:37:29

标签: angular angular2-routing

我想在点击后创建一个href跳转到特定的div。

目前我正在使用一个功能:

<button class="btn btn-default" (click)="gotoDiv()">Go to div</button>
...
gotoDiv(): void {
     window.location.href = window.location.href + "#someDiv";
}

但我不想在我的服务中加入html id。我想要这样的事情:

<a href="#someDiv" target="_self">Go to some div</a>
<div id="someDiv"></div>

但是这段代码重新加载了页面,并没有引导我进入div。提前致谢。

1 个答案:

答案 0 :(得分:0)

目前尚不支持。

有关详细信息,请参阅https://github.com/angular/angular/issues/6595

中的讨论