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.
在我的网站中,我想检查用户是否再次在同一选项卡或新选项卡中打开了我网站的主页?有什么解决方案可以检查吗?
您可以获得的最接近的方法是检查您当前的选项卡或窗口是否有任何历史记录......
if (history.length > 1) { // you're in an old tab } else { // you're in a new tab }
这是在 Javascript 中,而不是在服务器端,但我看不出你如何能够在服务器端代码中检测到类似的东西。