22

我有一個循環使用相同的標籤來加載十個單元格中的內容,但有一個不同的div標題和背景圖像,所以我不知道是否有任何方式來使用開關案例只是爲了把正確的div標題時我這樣做 - 每個爲XSL中的每個單元格加載內容? 是這樣的: < ...這裏加載相同的標籤內容...> 請幫助我,因爲我在XSL新的,謝謝你無論如何!XSL開關案例

回答

36

您可以使用,如果條件

<xsl:if test="expression"> 
    ...some output if the expression is true... 
</xsl:if> 

或選擇,如果有一個以上的條件,以檢查

<xsl:choose> 
    <xsl:when test="expression"> 
    ... some output ... 
    </xsl:when> 
    <xsl:when test="another expression"> 
    ... some output ... 
    </xsl:when> 
    <xsl:otherwise> 
    ... some output .... 
    </xsl:otherwise> 
</xsl:choose> 
+0

感謝你的幫助非常多,但我不知道我能multies XSL :選擇像多案例:在交換機或只是一個? – gacon 2009-08-04 01:55:57