我试图打开一个新的页面时,用户点击链接。我不能使用 Angular 2路由器,因为它没有任何功能重定向到外部 URL。
因此,我使用 window.location.href = “ ...”;
Html 代码:
<button (click)="onNavigate()">Google</tn-submenu-link>
打字稿代码:
onNavigate(){
//this.router.navigateByUrl("https://www.google.com");
window.location.href="https://www.google.com";
}
但是如何在使用 window.location.href 时在新标签页中打开它呢?