localStorage()、window.localStorage() 或 document.localStorage() 哪个选项更好?
这个问题说明了一切。我意识到所有选项都可以在最新的浏览器中使用,但是语义上最好的选择是什么,为什么?
The question says it all. I realize that all options do work in up-to-date browsers, but what is the semantically best choice, and why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 W3C 标准,正确的是
window.localStorage
,因为localStorage
属性是 window 对象的一部分。它不是一个函数,而是一个属性。来源:http://dev.w3.org/html5/webstorage/#dom-localstorage
示例:http://www.rajdeepd.com/articles/chrome /localstrg/LocalStorageSample.htm
According to W3C standards, the correct is
window.localStorage
because thelocalStorage
attribute is part of window object. And it is not a function, it is an attribute.Source: http://dev.w3.org/html5/webstorage/#dom-localstorage
Example: http://www.rajdeepd.com/articles/chrome/localstrg/LocalStorageSample.htm