Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经获取了如下所示的值..
<xsl:variable name="begtt"> <xsl:value-of select="substring($try_obj/@segReference,6)"/> </xsl:variable>
现在我需要检查是否begtt=0
begtt
所以我这样使用,但请告知这是正确的方法..
<xsl:when test="$begtt="'0'"> <xsl:value-of select="'0'"/>
当我收到错误消息时
你"中间有一个无关紧要的东西。尝试这个:
"
<xsl:when test="$begtt = '0'">