人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當(dāng)前位置:蘿卜系統(tǒng)下載站 > 技術(shù)開(kāi)發(fā)教程 > 詳細(xì)頁(yè)面

XSL簡(jiǎn)明圖文詳細(xì)教程(7)XSL 的控制語(yǔ)句

XSL簡(jiǎn)明圖文詳細(xì)教程(7)XSL 的控制語(yǔ)句

更新時(shí)間:2022-08-23 文章作者:未知 信息來(lái)源:網(wǎng)絡(luò) 閱讀次數(shù):

七. XSL 的控制語(yǔ)句

1.條件語(yǔ)句if...then

XSL同樣還有條件語(yǔ)句(呵呵~~好厲害吧,象程序語(yǔ)言一樣)。具體的語(yǔ)法是增加一個(gè)xsl:if元素,類似這樣

<xsl:if match=".[ARTIST='Bob Dylan']">

... some output ...

</xsl:if>


上面的例子改寫(xiě)成為:

<?xml version='1.0'?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">

<html>

<body>

<table border="2" bgcolor="yellow">

<tr>

<th>Title</th>

<th>Artist</th>

</tr>

<xsl:for-each select="CATALOG/CD">

<xsl:if match=".[ARTIST='Bob Dylan']">

<tr>

<td><xsl:value-of select="TITLE"/></td>

<td><xsl:value-of select="ARTIST"/></td>

</tr>

</xsl:if>

</xsl:for-each>

</table>

</body>

</html>

</xsl:template>

</xsl:stylesheet>


2. XSL 的Choose

choose的用途是出現(xiàn)多個(gè)條件,給出不同顯示結(jié)果。具體的語(yǔ)法是增加一組xsl:choose,xsl:when,xsl:otherwise元素:


<xsl:choose>

<xsl:when match=".[ARTIST='Bob Dylan']">

... some code ...

</xsl:when>

<xsl:otherwise>

... some code ....

</xsl:otherwise>

</xsl:choose>


上面的例子改寫(xiě)成為:

<?xml version='1.0'?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">

<html>

<body>

<table border="2" bgcolor="yellow">

<tr>

<th>Title</th>

<th>Artist</th>

</tr>

<xsl:for-each select="CATALOG/CD">

<tr>

<td><xsl:value-of select="TITLE"/></td>

<xsl:choose>

<xsl:when match=".[ARTIST='Bob Dylan']">

<td bgcolor="#ff0000"><xsl:value-of select="ARTIST"/></td>

</xsl:when>

<xsl:otherwise>

<td><xsl:value-of select="ARTIST"/></td>

</xsl:otherwise>

</xsl:choose>

</tr>

</xsl:for-each>

</table>

</body>

</html>

</xsl:template>

</xsl:stylesheet>


溫馨提示:喜歡本站的話,請(qǐng)收藏一下本站!

本類教程下載

系統(tǒng)下載排行

網(wǎng)站地圖xml | 網(wǎng)站地圖html
主站蜘蛛池模板: 黄骅市| 大洼县| 阳城县| 青岛市| 临夏市| 绿春县| 丰都县| 七台河市| 嵊泗县| 广昌县| 土默特左旗| 翁牛特旗| 柏乡县| 清远市| 平乡县| 永昌县| 宜州市| 札达县| 平潭县| 内江市| 和平区| 黄山市| 皋兰县| 长阳| 财经| 大连市| 岱山县| 齐齐哈尔市| 荣昌县| 文山县| 普安县| 楚雄市| 宁阳县| 朝阳市| 仲巴县| 孟津县| 左云县| 镇巴县| 津南区| 炉霍县| 沛县|