本文介绍了如何检测用户是否已经打开了URL,如果已经打开,则重定向到该URL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以告诉我如何检测用户是否已经打开了链接/URL"选项卡,并且如果URL已经打开,是否可以将链接重定向到活动的浏览器选项卡?

Can anyone please tell me how can I detect if user has already opened the link/url tab and is it possible to redirect a link to a active browser tab if the url is already opened?

例如:用户单击链接,js代码将在浏览器中打开一个新标签.现在,如果用户再次单击该链接,我希望他重定向到活动会话,而不是打开新标签.

Eg: User clicks on the link and js code will open a new tab in browser.Now if user again clicks on the link I want him to redirect to the active session instead of opening a new tab.

我阅读了以下帖子,但无法根据他们实现我的逻辑:

I read the below post but unable to implement my logic according to them:

Java:确保仅在一个应用程序中打开Web应用程序浏览器标签
可以检测用户是否您的网站打开了多个标签吗?

我正在使用简单的 window.open(url)在新标签页中打开我的网址.

I am using simple window.open(url) to open my url in new tab.

谢谢....

推荐答案

如果给已打开的窗口起一个名字,它将在第二次重新打开

if you give a name to the opened window it will reopen the same the second time

    window.open(url,"mypopup");

这篇关于如何检测用户是否已经打开了URL,如果已经打开,则重定向到该URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 01:28