带有键盘事件的导航列表

时间:2018-11-04 12:32:50

标签: angular

在角度6中导航链接列表的最佳方法是什么?

箭头键(向上和向下)将导航列表,而Enter键将切换或导航至新视图。

我的html看起来像这样:

<div *ngFor="let item of navItems">
 <a (click)="toggleItem(item)">
 <span>{{item.name}}</span></a>
</div>

谢谢

0 个答案:

没有答案