标签:偶数 样式 position output enc 笔记 utf-8 tput match
<xsl:template match="phone"><TD> <xsl:apply-templates /> </TD></xsl:template>
<xsl:template match="phone" mode="accountNumber">
<TD STYLE="font-style:italic">1-<xsl:value-of select="."/>-001</TD> </xsl:template>
(如果多个模板满足匹配模式,将选择其中优先级最高的模板。如果多个模板的优先级相同,将选择样式表中的最后一个模板。)
<IMG>
<xsl:attribute name="src">
<xsl:value-of select="imagenames/imagename" />
</xsl:attribute>
</IMG>
.或<IMG src="{imagenames/imagename}"/>
结果:<IMG src=" imagenames/imagename"/>
<xsl:value-of select="//RJ_lump[@name=‘form1cont‘]" disable-output-escaping="yes"/>
<Connector port="8080"
URIEncoding="utf-8"
protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
Note:
用于判断xsl内容等于多少
</xsl:if>
2.<a href="adapter?open&url=http://{$HostName}:{$HostPort}{./main/article/header/a/@href}"><span><xsl:value-of select="./main/article/header" /></span></a>
xsl中的空格  
html中的空格
3.获取xsl 奇数 偶数 位置的值语法如下
position() mod 2 = 1奇数
position() mod 2 = 0偶数
用法如下:
<xsl:for-each select="//table/tr[position() mod 2 = 1]">
<td><xsl:value-of select="./td[1]/text()" /></td>
<td><xsl:value-of select="./td[1]/text()" /></td>
</xsl:for-each>
<xsl:variable name="newLineItems"> <xsl:for-each select="//lineItem""> <lineItem> <xsl:copy-of select="*"/> <subTotal><xsl:value-of select="number(amount)*number(cost)"/></subTotal> </lineItem> </xsl:for-each> </xsl:variable>
<xsl:variable name="lineItemsTotal"> <xsl:value-of select="sum($newLineItems/subTotal)"/> </xsl:variable>
标签:偶数 样式 position output enc 笔记 utf-8 tput match
原文地址:http://www.cnblogs.com/natureclove/p/7495005.html