Leave a Comment
XSLT: объявление переменной
Объявление переменной в зависимости от условия
1 2 3 4 5 6 7 8 9 10 11 |
<xsl:variable name="user_id"> <xsl:choose> <xsl:when test="/page/user"> <xsl:value-of select="/page/user/@id"/> </xsl:when> <xsl:when test="/ajx/search/user"> <xsl:value-of select="/ajx/search/user/@id"/> </xsl:when> <xsl:otherwise>0</xsl:otherwise> </xsl:choose> </xsl:variable> |
Similar Posts
LEAVE A COMMENT
Для отправки комментария вам необходимо авторизоваться.