最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to prevent same website open multiple tab pages? - Stack Overflow

programmeradmin1浏览0评论

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
 |  Show 1 more ment

2 Answers 2

Reset to default 4

Perhaps 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())
发布评论

评论列表(0)

  1. 暂无评论