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.
我怎样才能限制只有一个 url 实例(http://example.com)在客户端只打开一次?
我的网站上有一个链接,点击它会打开一个新窗口。如何限制只打开一个实例?
如果您想要的不是每次用户单击链接时都打开一个新页面。您可以将目标从“_blank”设置为某个框架名,如下所示:
<a href="http://www.example.com" target="myframename">link</a>
在这种情况下,当用户第一次单击链接时,浏览器将在一个新页面中打开它,并附有框架名称。下次用户单击链接时。浏览器会检查 framename 是否存在并且不会打开一个新的,只需激活现有的。