是否可以从 XML 数据生成 HTML 5 页面?
我有来自纯 XML 格式的服务器的数据,但我想将输出呈现为丰富的 HTML 5 页面以供用户使用。为此,我只能使用客户端脚本(也只是 Javascript)。
那么,是否可以使用XML数据生成HTML-5页面呢?
谢谢。
I have data coming from a server in pure XML format, but I want to render the output as a rich HTML 5 page for the user. I got to use only client side scripting for this purpose (that too just Javascript).
So, is it possible to generate HTML-5 page using XML data?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 XSLT 来转换 xml。这正是它的目的,并且所有主要浏览器都支持它们,包括 IE6。
否则,您可能会得到一个只有
和
的裸 HTML,其中包含 jQuery 和一些 JS 魔法。
You could use XSLT to transform the xml. That's exactly that its for and all major browsers support them, including IE6.
Otherwise, you could have a bare HTML with just a
<head>
and a<body>
with jQuery and some JS wizardry.看看这里。
http://www.devarticles.com/c/a/JavaScript/ JavaScript 和 XML/
Look over here.
http://www.devarticles.com/c/a/JavaScript/JavaScript-and-XML/
较新的浏览器可以解析 XML
http://www.w3schools.com/xml/xml_parser.asp
因此应该可以在浏览器中解析 XML,然后编写代码来获取模型并按照您认为合适的方式呈现它。
Newer browers can parse XML
http://www.w3schools.com/xml/xml_parser.asp
So it should be possible to parse the XML in the browser, and then write code to take the model and render it as you see fit.