打开一个新标签页的链接,只有新标签(Opening links in a new tab and o

2019-09-16 12:46发布

我需要打开一个新标签页或弹出式窗口,然后将原来的源链接被点击其他任何时候,它更新已经打开的标签或窗口。 现在,它只是不断打开新的标签,这不是的预期行为。

Answer 1:

指定一个自定义的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指定表名作为第二个参数。



文章来源: Opening links in a new tab and only the new tab