我有一个数据的XML如下
<Item1>
<item2>
<Item3>111</Item3>
<Item2>
</Item11>
要获得项目3的值111
<xsl:choose>
<xsl:value-of select="Item1/Item2/Item3"/>
</xsl:choose>
在XSLT。 现在,我需要得到以下几点:
<Product1>
<Product2>
<Product3 ValidYN="Y" ProducType="ABC">333</Product3>
<Product3 ValidYN="Y" ProducType="DEF">444</Product3>
<Product3 ValidYN="Y" ProducType="GHI">555</Product3>
<Product12>
</Product1>
我需要根据ProducType。怎么值333,444,555做使用XSLT相同