在android中使用HTML5的localStorage呈现HTML5页面。
localStorage["temp"] = "test";
对于上面的行,它给出错误: TypeError:'null'不是对象(评估'localStorage [“temp”] =“test”')。
(它在浏览器中完美运行 - chrome或firefox,在html5 storage页面中编写支持android 2.0 +)
答案 0 :(得分:6)
尝试将其设置为您的网页设置:
yourWebViewObject.getSettings().setDomStorageEnabled(true);