<xsl:attribute> 的示例 2
此示例演示如何使用属性值模板来将 XML 源文档中的内容作为属性名使用。
XML 文件 (attribute.xml)
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="attribute.xsl"?>
<investment>
<type>stock</type>
<name>Microsoft</name>
<price type="high">100</price>
<price type="low">94</price>
</investment>
XSLT 文件 (attribute.xsl)
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" indent="yes"/>
<xsl:template match="investment">
<xsl:element name="{type}">
<xsl:attribute name="name" >
<xsl:value-of select="name"/>
</xsl:attribute>
<xsl:for-each select="price">
<xsl:attribute name="{@type}" >
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
输出
没有格式化输出。以下是处理器输出:
<?xml version="1.0"?>
<stock name="Microsoft" high="100" low="94">
</stock>