提问人:Mocking Bird 提问时间:11/9/2023 最后编辑:Daniel HaleyMocking Bird 更新时间:11/9/2023 访问量:43
将 xsl:stylesheet 应用于 xml 文件
Apply xsl:stylesheet to xml file
问:
每次我创建一个带有 xsl 文件的 xml 文件以在其上应用样式表时,我最终都会得到一个不考虑样式表的网页。
下面是文件的简单示例:
XML 文件:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="student.xsl" version="2.0"?>
<class>
<student>
<firstname>First Name</firstname>
<lastname>Last Name</lastname>
</student>
</class>
XSL 文件:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body>
<h2>Student List</h2>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
这是网页上显示的内容:
看图片
通常,它应该显示“学生列表”,而不是“名字姓氏”。
ps:我尝试了浏览器 Firefox、Chrome、Microsoft Edge 和我遇到了同样的问题。
答: 暂无答案
评论