IE8本地存储事件在文件中不在窗口中触发。为什么这是不同的?

时间:2015-06-16 14:17:01

标签: javascript jquery internet-explorer-8 local-storage

$(document).bind('storage', function (e) {
    if(!document.hasFocus() && localStorage.getItem("MapLoginStatus") == "false"){
         //// action
    }    
});

This works in IE8 not in chrome.

$(window).bind('storage', function (e) {
    if(!document.hasFocus() && localStorage.getItem("MapLoginStatus") == "false"){
        //// action
    }  
});

This works in Chrome not in IE8

如何识别,哪一个有效? 是否有像localStorage.inside(窗口)这样的函数 - 或类似的东西?

感谢。

0 个答案:

没有答案