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.
这是做什么的? 我认为这个 XSLT 代码没有做任何事情是正确的吗?
.... <xsl:template match="/*[1]"> <xsl:apply-templates /> </xsl:template> ....
它是一个模板匹配任何名称的根元素,然后将模板应用于根元素的所有子节点。我不会称之为“不做任何事情”,尽管内置模板足以对根元素和其他事情做同样的事情,因此...判断是否需要模板至关重要。
...