android - html5本地存储问题
在android中渲染HTML5页面时,我使用了HTML5的localStorage。
localStorage["temp"] = "test";
对于上面的行,它给出错误: TypeError: 'null' is not an object (evaluating 'localStorage["temp"] = "test" ')。
(它在chrome或firefox浏览器中完美运行,在html5存储页面中编写它支持android 2.0+)
While rendering HTML5 page in android where i had used localStorage of HTML5.
localStorage["temp"] = "test";
For above line it gives error: TypeError: 'null' is not an object (evaluating 'localStorage["temp"] = "test"').
(It works perfectly in browsers-chrome or firefox, In html5 storage page its written it supports android 2.0+)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其设置为您的网络视图设置:
Try setting that to your webview settings :