admin管理员组文章数量:1343911
I have a scenario that prevents the same website in multiple opened tab pages of browser. My idea is when user open a website at first time from browser, it's fine, when user produces the new tab page or external link to open the same website again, we should redirect it to already opened one. I have no idea how to implement. Can I have some clues? Thanks.
I have a scenario that prevents the same website in multiple opened tab pages of browser. My idea is when user open a website at first time from browser, it's fine, when user produces the new tab page or external link to open the same website again, we should redirect it to already opened one. I have no idea how to implement. Can I have some clues? Thanks.
Share Improve this question edited Nov 17, 2015 at 23:54 Jan Dörrenhaus 6,7172 gold badges35 silver badges45 bronze badges asked Nov 17, 2015 at 23:51 crazy_develerpercrazy_develerper 1071 gold badge1 silver badge8 bronze badges 6- "we should redirect it to already opened one" --- what does this exactly mean? – zerkms Commented Nov 18, 2015 at 0:01
-
github./tejacques/crosstab +
window.focus()
– qwertymk Commented Nov 18, 2015 at 0:02 - not open more than one tab page for same website – crazy_develerper Commented Nov 18, 2015 at 0:13
- 1 You cannot (and should not) do that. – zerkms Commented Nov 18, 2015 at 0:13
- User can always just open use another browser or another puter to open another view onto the web site. So, basically you cannot ever prevent this. Your web-site should be able to handle multiple tabs viewing the same state. – jfriend00 Commented Nov 18, 2015 at 0:22
2 Answers
Reset to default 4Perhaps use local storage.
Window.onload=function(){
if(localStorage.getItem('windows')===1){
window.close();
}else{
localStorage.setItem("windows",1);
}
}
Window.onbeforeunload=function(){
localStorage.setItem("windows",0);
}
I recently ran across a similar problem where I had to prevent that multiple windows/tabs operated on the same localStorage.
The solution was to use StorageEvents: every window receives a StorageEvent whenever another(!) window made changes to the same localStorage as this one uses.
Thus, the trick was to define a "dummy" key for localStorage and let every window write some random value into that key just to let all other windows using the same localStorage receive a StorageEvent:
window.addEventListener('storage', () => {
window.alert('another window or tab is working on the same localStorage')
}, false)
localStorage.setItem('Sentinel',Math.random())
本文标签: javascriptHow to prevent same website open multiple tab pagesStack Overflow
版权声明:本文标题:javascript - How to prevent same website open multiple tab pages? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737541a2530284.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论