<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume`efile_format = 'PDF' or efile_format = 'Document' ">
我想检查efile_format的值。因为它在我尝试工作时总是会失败,但是尝试仅在查看条件时才关注该条件,无论条件是否在影响
<xsl:if test="1">
答案 0 :(得分:0)
我假设您错过了第二个或条件:
<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume`efile_format = 'PDF' or efile_format = 'Document' ">
正确的syntex可能是其中之一:
<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume' or efile_format = 'PDF' or efile_format = 'Document' ">
OR
<xsl:if test="efile_format[(. = 'PDF') or (. = 'Document')]">
OR
<xsl:if test="efile_format=('PDF','Document')">