-2

我不断收到 XSLT 错误:

<xsl:template name="PermissionsHeader">
  <xsl:if test="true">
  </xsl:if>
</xsl:template>

是否存在某种优先级,其中 xsl:if 不能嵌套在 xsl:template 中?我想要的只是 xsl:template 中的一些条件...谢谢

错误信息:

Error on line 1 column 1 
  SXXP0003: Error reported by XML parser: Premature end of file.
4

1 回答 1

1
<xsl:if test="true"> 
</xsl:if> 

这里

于 2012-08-03T19:53:59.470 回答