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

Do browsers propagate javascript variables across tabs? - Stack Overflow

programmeradmin7浏览0评论

I have some JavaScript that will look to see if a var is set, if it is set then do something if not don't.

if (reset === 'reset') {
    gallery.unformat(container);
}

reset is only set once the page has loaded. So this script will only execute after the user reloads the page.

If i open a new tab in firefox reset isn't set. If i open a new tab in chrome reset is set.

So for my case chrome handles it correctly and only on the first going to the site does this var get set and thus everything works correctly.

I want to know is do variables propagate across tabs and if so which browsers do what?

I have some JavaScript that will look to see if a var is set, if it is set then do something if not don't.

if (reset === 'reset') {
    gallery.unformat(container);
}

reset is only set once the page has loaded. So this script will only execute after the user reloads the page.

If i open a new tab in firefox reset isn't set. If i open a new tab in chrome reset is set.

So for my case chrome handles it correctly and only on the first going to the site does this var get set and thus everything works correctly.

I want to know is do variables propagate across tabs and if so which browsers do what?

Share Improve this question edited Sep 23, 2014 at 4:48 infused 24.4k13 gold badges70 silver badges79 bronze badges asked Jul 19, 2012 at 9:40 Jamie HutberJamie Hutber 28.1k54 gold badges194 silver badges313 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

Variables should not persist across new tabs. I can't reproduce the behaviour you see in Chrome.

You should looking at using cookies, or if you want to be HTML5, look at localStorage.

Both of these are domain specific, rather than per-tab.

E.g. in localStorage, you could go for;

// Check that localStorage is supported in the current browser, and then try
// to retrieve the item.
if ('localStorage' in window && localStorage.getItem('reset') === 'reset') {
    gallery.unformat(container);
}

You'd then be able to set reset later via;

localStorage.setItem('reset', 'reset');

No, variable values should not propagate between tabs - each tab should have its own global namespace, there would be all kinds of security issues if one tab could affect the JavaScript in another.

发布评论

评论列表(0)

  1. 暂无评论