使用localStorage时,密钥是否有限制(最多可用本地存储量)?
即。我可以这样做:
localStorage.setItem("pretend that this is a 1MB string", "whatever");
答案 0 :(得分:25)
是的,每个域限制为5MB。 你的字符串可以随意长。但总使用量必须低于5 MB。
http://dev.w3.org/html5/webstorage/
http://www.stackoverflow.com/questions/2747285/html5-localstorage-restrictions-and-limits