作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这里浏览所有问题/答案,但找不到解决我的问题的方法。条件('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/
我是一名优秀的程序员,十分优秀!