最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Prevent "Enter" to trigger onClick event of anchor tag - Stack Overflow

programmeradmin3浏览0评论

I have anchor links which has click event attach to them. When I use tab key to reach the anchor link and press enter, it trigger the click event. I want that it goes to the link attached and does not trigger the click event when pressed enter.

public clickHandler(e: Event) {
    if (this.isMobile) {
      e.preventDefault();
    }
    this.changeState(this.singleItem);
  }
}
发布评论

评论列表(0)

  1. 暂无评论