Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我见过很多在网页 (HTML) 中显示 XML 文件的方法,但还没有遇到过使用 CSS 样式表的方法。
我有一个已经有 CSS 样式表的 XML 文件。在 Web 浏览器中查看 .xml 时,使用 CSS 可以正常显示。我想在网页 (HTML) 中显示相同的 XML 文件,最好的方法是什么?谢谢。
如果您有一个单独的样式化 XML 文档并且您想在 HTML 页面中显示它,您可能会使用 <object> 标记:
<object height="100%" width="100%" border="0" type="text/xml" data="yourfile.xml"> <!-- alternative content used when the inclusion fails --> </object>
(仅在 FireFox 中测试)。或者,一个 <iframe> 可以做类似的工作。