最佳答案
在 XSLT 中有
<xsl:value-of select="expression"/>
来获取元素的值,但是是否有可以选择元素的标签名称的内容呢?
在这种情况下:
<person>
<!-- required stuff -->
<name>Robert</name>
<!-- optional stuff, free form for future extension.
Using XMLSchema's xsd:any -->
<profession>programmer</profession>
<hobby>photography</hobby>
</person>
<xsl:for-each select="person">
<xsl:tag-of select="."/> : <xsl:value-of select="."/>
</xsl:for-each>
要得到这样的输出:
name : Robert profession : programmer hobby : photography
当然,上面的 XSLT 不会编译,因为
<xsl:tag-of select="expression"/>
根本不存在,但这怎么可能呢?