我有一个XSL(如果使用的话)。表中的字段默认为NULL。他们对我进行了一些更改,现在默认将其设置为0.0。现在我的XSL无法正常工作,我已经尝试了好几天了,以找出原因。有时choiceA或choiceB可以为0。无论数字是什么
<xsl:if test="not(@choiceA = '0') or not(@choiceB = '0')">
<h2 class="course-heading">Big list of choiceA and choiceB</h2>
<span class="choice list-sq">
<ul>
<xsl:if test="not(@choiceA = '0')">
<li><xsl:value-of select="@choiceA"/> choiceAs</li>
</xsl:if>
</ul>
</span>
</xsl:if>