gpt4 book ai didi

javascript - In IE10 ('localStorage' in window) condition is true but localStorage is undefined?

转载 作者:行者123 更新时间:2023-11-30 10:26:36 25 4
gpt4 key购买 nike

在这里浏览所有问题/答案,但找不到解决我的问题的方法。条件('localStorage' in window)返回 true但是 localStorage 的对象本身仍然是 undefined . <!DOCTYPE html>设置不当,无法正常工作。我正在使用 IE10。尝试通过开发者工具观看,结果相同。

这里有什么想法吗?

编辑

function storageAvailable() {
try {
return 'localStorage' in window && window['localStorage'] !== null && window['localStorage'] !== undefined;
} catch (e) {
return false;
}
}

基于 IE9 中的相同问题,我想更新问题:是否有任何解决方法?我什至不能在我需要测试的机器上使用静态服务器上。

最佳答案

我要冒昧地说你的问题是 local storage 不能在 ie 中的 file://协议(protocol) 上工作,所以你需要某种服务器。

关于javascript - In IE10 ('localStorage' in window) condition is true but localStorage is undefined?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19328469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com