我有我的 xml 的以下部分。
情况1:
<para>
<content-style font-style="bold">Affidavit</content-style>
</para>
案例2:
<para>This is a different <content-style font-style="bold">Affidavit</content-style> case
</para>
如果只有节点存在(案例 1),但如果其中也有文本(案例 2),我希望控件在此处调用部分模板。我尝试了下面的 xslt,但它不起作用。请让我知道该怎么做。
<xsl:template match="para">
<xsl:choose>
<xsl:when test="child::content-style/node[1]">
<xsl:call-template name="section"/>
</when></xsl:choose>
</xsl:template>
谢谢