0
我有一個變量,每次單擊一個按鈕時需要存儲在localStorage中。我這樣做的方式是:localStorage返回空對象
localStorage.setItem('newFileName', localStorage.getItem('newFileName') + ",<br><br>" + newFileName);
,然後我取這樣的:
ending = localStorage.getItem('newFileName');
這是應該返回字符串:
newFileName,newFileName等。但是它返回爲:
空,newFileName,newFileName
我不知道爲什麼呢?有人可以幫我嗎?
因爲它沒有被初始化。 – Scimonster 2015-03-08 21:53:49
...和'null'變爲'「null」'。你需要一個'if'語句。 – undefined 2015-03-08 21:54:35
'localStorage.newFileName'未設置爲獲取。 – PHPglue 2015-03-08 22:11:16