Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将弹出窗口更改为选项卡窗口?我有一个网页,通过单击一个按钮,此页面会更改为弹出窗口,我想知道是否可以在弹出窗口中使用相同的按钮将此弹出窗口更改为普通选项卡?有什么建议吗?
Web 浏览器/用户决定页面是在新选项卡中打开还是在新窗口中打开。没有接口可以可靠地影响这个决定。
很抱歉让您失望了!
如果你想打开同一个窗口:
<a href="url">click</a>
如果你想打开一个新标签:
<a href="url" target="_blank">click</a>
或者
<a href="url" target="_newtab">click</a>