web-dev-qa-db-ja.com

localStorageのキーの長さに制限はありますか?

LocalStorageを使用する場合、キーに(使用可能なローカルストレージの量まで)制限はありますか?

つまり、私は次のようなことをすることができます:

localStorage.setItem("pretend that this is a 1MB string", "whatever"); 
40
chris

はい、制限はドメインあたり5MBです。文字列は好きなだけ長くできます。ただし、合計使用量は5 MB未満でなければなりません。

http://dev.w3.org/html5/webstorage/

http://www.stackoverflow.com/questions/2747285/html5-localstorage-restrictions-and-limits

31
Aniket