我有一些值:XSLT:輸出條件
//property[@name='bla1']/value
//property[@name='bla2']/value
//property[@name='bla3']/value
我需要改變PARAMET「是活性」爲0時,如果它們都是等於零或爲空。
如果BLA1 = bla2 = bla3 = 「0或空」,那麼 「爲主動」= 0,其他1
我找的例子,但我不知道如何使用這個:
<xsl:attribute name="is-active">
<xsl:choose>
<xsl:when test="...">0</xsl:when>
<xsl:otherwise>1</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
請幫助我。