我是xml的新手,我正在努力使用xsl转换为html。我一直在寻找xsl教程是徒劳的......我不了解架构的逻辑。
我正在尝试一些非常基本的东西
例如,我不知道何时何地放置" apply-templates"元素。
麻生太郎,我无法看到如何组织你从xml转换过来的那些html元素。我有意义吗?
这是一段&#34;代码&#34;合并在<section>
下面和下面:
<xsl:template match = "curriculum">
<html>
<body>
<h1><xsl:value-of select="$title"/></h1>
<xsl:for-each select="section">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:for-each>
<xsl:apply-templates/>
</body>
<xsl:apply-templates/>
</html>
</xsl:template>
欢迎任何见解! 非常感谢。