我正在尝试在HTML5 LocalStorage中添加一些信息,但是,我在以下代码中看到错误“对象#没有方法'put'”:
window.localStorage.put('thing1', thing1);
window.localStorage.put('thing2', thing2);
window.localStorage.put('json', JSON.stringify(json));
在脚本的开头我检查了localstorage是否存在。我不需要在localStorage之前指定窗口对象吗?
答案 0 :(得分:0)
localStorage
使用localStorage.setItem
,而非localStorage.put
。