<xsl:template name="makeDiv">
<xsl:when test="descendant::*[Parent][Name]">
</xsl:when>
</xsl:template>
某处下线...
<xsl:if test="descendant::ParentCheck">
<xsl:call-template name="makeDiv"/>
</xsl:if>
有人可以向我解释定义了什么 template-name=makeDiv 以及测试在做什么吗?它是否正在寻找属于 的后代的任何节点的属性 ' Parent
' 和 ' ' ?Name
ParentCheck
还有,什么<xsl:when test="not(descendant::*[SomeAttribute])">
意思?它是指其他不是的子元素SomeAttribute
吗?