在离线 Web 应用程序中读取 XML 文件
我对 HTML 和 JavaScript 开发非常陌生。
我的目标是开发一个 WebWorks Playbook 应用程序,但由于它与离线 HTML5 应用程序相同,我会问:
我想使用 JavaScript 读取 XML 文件。因为它是一个离线应用程序,所以我不知道如何访问 XML 文件。
您知道如何访问此 XML 文件吗?
然后,我怎样才能读到它呢?我可以使用 jQuery 吗?
I'm very very new in HTML and JavaScript development.
My goal is to develop a WebWorks Playbook app, but as it is identical to an Offline HTML5 app I ask this:
I want to read an XML file using JavaScript. Because it is an Offline application I don't know how to get access to XML file.
Do you know how can I get access to this XML file?
And then, how can I read it? May I use jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 HTML5 的 localStorage 将 XML 文件存储在用户的浏览器中(作为字符串)。
然后离线时从localStorage读取。
You can use HTML5's localStorage to store the XML file in user's browser(as a string).
Then when offline, read it from localStorage.