我正在构建一个 Winform 网络浏览器。我有一个history.xml
存储浏览器历史记录的文件。我需要在浏览器窗口中显示它,以便用户可以单击网站的超链接并进行导航。我想使用 JavaScript 来解析 XML 文件并以表格形式显示内容。如何使用 JS 解析 XML?我不确定在这种情况下使用什么。我已经有一个很好的带有 CSS 的 HTML 页面来显示历史记录。请指教。
我的 XML 文件看起来像这样。
<?xml version="1.0" encoding="utf-8"?>
<browsing>
<history date="08/10/2012">
<url>http://www.google.ca/</url>
<time>12:52 AM</time>
</history>
<history date="08/10/2012">
<url>http://www.facebook.com/</url>
<time>12:53 AM</time>
</history>
<history date="08/10/2012">
<url>http://ca.msn.com/</url>
<time>9:51 PM</time>
</history>
</browsing>