所以这是按钮打开某个链接的简单代码
Google
但它在同一页面上打开它,我希望链接在新选项卡上打开.
您可以使用以下内容.
window.open( 'https:http://google.com', '_blank' // <- This is what makes it open in a new window. );
在HTML中
plunkr
通过Bootstrap,您可以像按钮一样使用锚点。
并用于target="_blank"在新标签页中打开链接。
target="_blank"