我有一个这样的 xml 文件。
<RootTag>
<Form>
<Section>
<Annex>
<Group>
<Label value = "Name"></Label>
<Text Value = "Enter Name"></Text>
</Group>
<Group>
<Label value = "Gender"></Label>
<Radio Value = "Male||Female"></Text>
</Group>
</Annex>
</Section>
</Form>
</RootTag>
现在在我的 xsl 中,我必须检查标签是否为<Text>
or并根据该结果<Radio>
生成标签。<input>
有什么我可以使用的<xsl:if>
吗?像<xsl:if test = 'node = <Text>'>