LocalStorage Firefox 3.6

TRi*_*RiG 3 javascript firefox html5 local-storage

根据我读过的所有内容,Firefox 3.5+支持localStorage.然而,我在Firefox 3.6中看到警报(失败).我的Firefox中有一些奇怪的设置吗?有任何想法吗?

function supports_html5_storage() {
    try {
        return 'localStorage' in window && window['localStorage'] !== null;
    } catch (e) {
        alert('failing');
        return false;
    }
}
Run Code Online (Sandbox Code Playgroud)

注意:该页面有一个HTML5 doctype(虽然我觉得这没什么区别).

TRi*_*RiG 6

即使Firefox支持localStorage,也可以关闭它.检查它是否已打开.

转到about:config并检查dom.storage.enabled是否设置为true.