我有一个包含如下数据的 XML
<Item1>
<item2>
<Item3>111</Item3>
<Item2>
</Item11>
获取Item3中的值 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 做同样的事情