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.
我需要打开一个新选项卡或弹出窗口,然后在任何其他时间单击原始源链接时,它会更新已打开的选项卡或窗口。现在它只是不断打开一个新标签,这不是预期的行为。
指定自定义target名称:
target
<a href="something.html" target="otherpage">Go to some page #1</a> <a href="something2.html" target="otherpage">Go to some page #2</a>
这将“命名”另一个窗口/选项卡并target在该页面中打开具有相同链接的链接,或者在新窗口/选项卡中(如果尚不存在)。window.open您可以通过将名称指定为第二个参数来实现相同的效果。
window.open