有没有一种简单的方法来检查本地存储是否为空?

时间:2014-03-15 00:22:03

标签: javascript html5 local-storage

Q是自我解释的,只是想查看if语句。

2 个答案:

答案 0 :(得分:2)

是的,试试这个

localStorage.length === 0

答案 1 :(得分:2)

localStorage has a length property:

if (localStorage.length === 0) {
   // empty
}