English | Français | Deutsch | Magyar | >> 中文 << | Polski | ZVON > Tutorials > XSLT Tutorial |
介绍 / 搜索 / ZVON |
>> 页 13 << | 上一条 | 下一条 | 目录 | 元素索引 |
XML源码
<source> <employee id="js0034"> Joe Smith </employee> </source> 输出
Joe Smith [<b> <i>js0034</i> </b>] 用HTML察看
Joe Smith
[
js0034
]
|
XSLT stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="employee"> <xsl:value-of select="."/> <xsl:text>[</xsl:text> <xsl:apply-templates select="@id"/> <xsl:text>]</xsl:text> </xsl:template> <xsl:template match="@id"> <b> <i> <xsl:value-of select="."/> </i> </b> </xsl:template> </xsl:stylesheet> |