android - html5 localstorage问题

时间:2011-07-22 13:59:59

标签: android html5 local-storage

在android中使用HTML5的localStorage呈现HTML5页面。

localStorage["temp"] = "test";

对于上面的行,它给出错误: TypeError:'null'不是对象(评估'localStorage [“temp”] =“test”')

(它在浏览器中完美运行 - chrome或firefox,在html5 storage页面中编写支持android 2.0 +)

1 个答案:

答案 0 :(得分:6)

尝试将其设置为您的网页设置:

yourWebViewObject.getSettings().setDomStorageEnabled(true);