首页 > 解决方案 > window.location 在新选项卡中打开链接

问题描述

到目前为止我有

<div style="position: absolute; left: 47%; top: 70%; margin-right: -52%; transform: translate(-50%, -50%)" onclick="window.location='https://steamcommunity.com/';">

我想在新选项卡中打开此页面,但使用 window.open 时遇到问题,因为该类是图像。有什么建议么?

标签: javascripthyperlinkwindow.openwindow.location

解决方案


您可以改用 target="_blank":

<a href="https://steamcommunity.com/'"  target="_blank"/>

推荐阅读