当前位置: 首页 > 网络学院 > XML相关教程 > XSL/XSLT > XSLT <xsl:text> 元素
The <xsl:text> element is used to write literal text to the output.
<xsl:text> 元素的作用是:将一段文本写入输出文档中。
Tip: This element may contain literal text, entity references, and #PCDATA.
提示:这个元素可以包含纯文本、实体参数和 #PCDATA。
<xsl:text disable-output-escaping="yes|no"> <!-- Content:#PCDATA --> </xsl:text> |
属性 | 值 | 描述 |
---|---|---|
disable-output-escaping | yes no | Optional. "yes" indicates that special characters (like "<") should be output as is. "no" indicates that special characters (like "<") should be output as "<". Default is "no". 可选参数。如果设置为"yes",则指定了具体字符(如:“<”)以其本身形式输出;如果设置为"no",则指定了具体字符(如:“<”)必须作为"<"输出。默认为no This attribute is not supported by Netscape 6 |
Displays the title of each CD. Inserts a ", " between each cd-title if it is not the last CD - or the last but one. If it is the last CD, it will add a "!" behind the title. If it is the last but one, add a ", and " behind the title:
下面的例子用于显示每张CD的title[标题]。如果指针并为处于最后一个CD标题指针处或仅包含一个CD标题,那么将在每个CD标题之间插入一个逗点(,);如果指针位于最后一个CD指针处,那么则必须在标题后面添加一个“!”。如果仅包含一个CD标题,那么则在标题后面加上一个", and ":
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>My CD Collection</h2> <p>Titles: <xsl:for-each select="catalog/cd"> <xsl:value-of select="title"/> <xsl:if test="position() < last()-1"> <xsl:text>, </xsl:text> </xsl:if> <xsl:if test="position()=last()-1"> <xsl:text>, and </xsl:text> </xsl:if> <xsl:if test="position()=last()"> <xsl:text>!</xsl:text> </xsl:if> </xsl:for-each> </p> </body> </html> </xsl:template> </xsl:stylesheet> |