最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is localStorage fully loaded only after DOM is ready? - Stack Overflow

programmeradmin1浏览0评论

I have got a bug with some javascript code that it's hard to reproduce (so no jsfiddle, sorry). Exactly the same browser (FF 37.0.2), but two different machines, and I can only reproduce the bug on one of them.

I suspect the issue has something to do with localStorage and the fact that I check if an item is there outside $(document).ready().

Is that required? Do I need to wait for the DOM to be ready before reliably accessing localStorage? Is my hypothesis plausible?

I have got a bug with some javascript code that it's hard to reproduce (so no jsfiddle, sorry). Exactly the same browser (FF 37.0.2), but two different machines, and I can only reproduce the bug on one of them.

I suspect the issue has something to do with localStorage and the fact that I check if an item is there outside $(document).ready().

Is that required? Do I need to wait for the DOM to be ready before reliably accessing localStorage? Is my hypothesis plausible?

Share Improve this question asked May 3, 2015 at 0:26 Alessandro CosentinoAlessandro Cosentino 2,3641 gold badge22 silver badges30 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

localStorage is not something that needs to be "loaded" asynchronously. It is available the moment the page starts to load and can be used by Javascript anywhere in the page. If the browser has to fetch values form somewhere (e.g. the disk), that is done synchronously when you request the data or before.

There is no need to wait with $(document).ready() before accessing localStorage. The cause of your issue must be something else.

FYI, you can read the spec on WebStorage here: http://dev.w3/html5/webstorage/#dom-localstorage. There is no indication in the localStorage section of that document that JS code must "wait" before accessing.

发布评论

评论列表(0)

  1. 暂无评论