所以我有一篇我正在课堂上学习的XML文档。
<etymology>The <a href="https://en.wikipedia.org/wiki/Yakama">Yakama</a> Native American tribe</etymology>
它包含词源学元素中的href。默认情况下,当XSLT对其进行转换时,链接将以仅显示文本并且不再链接到另一个页面的方式“停用”。
我需要知道该怎么做:
<td width="25%">
<xsl:value-of select="etymology"/>
</td>
因此,Etymology元素中可能存在的链接将转换或显示为链接,而不会转换为纯文本。
样式表中定义的当前和唯一模板是:
<xsl:template match="/">
<html>
<head>
<title>Washington Counties</title>
</head>
<body>
<h1>Washington Counties</h1>
<p>
( <a><xsl:attribute name="href">
<xsl:value-of select="counties/@source" />
</xsl:attribute>
data source</a> )
</p>
<table border="1" style="border-collapse: collapse;">
<tr><th>County</th><th>INCITS</th><th>County Seat</th><th>Established</th><th>Origin</th><th>Etymology</th><th>Population</th><th>Area</th><th>Map</th>
</tr>
<xsl:for-each select="counties/county">
<xsl:sort select="established" order="ascending" data-type="number" />
<tr>
<td>
<xsl:choose>
<xsl:when test="name = 'Grays Harbor County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#b">b</a></sup>
</xsl:when>
<xsl:when test="name = 'Mason County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#c">c</a></sup>
</xsl:when>
<xsl:when test="name = 'Kitsap County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#d">d</a></sup>
</xsl:when>
<xsl:when test="name = 'Clark County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#e">e</a></sup>
</xsl:when>
<xsl:when test="name = 'Yakima County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#f">f</a></sup>
</xsl:when>
<xsl:when test="name = 'Jefferson County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#g">g</a></sup>
</xsl:when>
<xsl:when test="name = 'Clallam County'" >
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
<sup><a href="#g">g</a></sup>
</xsl:when>
<xsl:otherwise>
<a>
<xsl:attribute name="href">
<xsl:value-of select="@href" />
</xsl:attribute>
<xsl:value-of select="name" />
</a>
</xsl:otherwise>
</xsl:choose>
</td>
<td>
<a>
<xsl:attribute name="href">
<xsl:value-of select="incits/@href" />
</xsl:attribute>
<xsl:value-of select="incits" /></a>
</td>
<td>
<a>
<xsl:attribute name="href">
<xsl:value-of select="countySeat/@href" />
</xsl:attribute>
<xsl:value-of select="countySeat" /></a>
</td>
<td>
<xsl:choose>
<xsl:when test="established = 1879">
<xsl:value-of select="established" /> <sup>
<a href="#a">a</a>
</sup>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="established" />
</xsl:otherwise>
</xsl:choose>
</td>
<td>
<xsl:choose>
<xsl:when test="origin != 0">
<xsl:value-of select="origin" />
</xsl:when>
<xsl:otherwise>
Original County
</xsl:otherwise>
</xsl:choose>
</td>
<td width="25%">
<xsl:value-of select="etymology"/>
</td>
<td><xsl:value-of select="population" /></td>
<td><xsl:value-of select="area[@unit='mi2']" /> sq mi
<br />(<xsl:value-of select="area[@unit='km2']" /> sq km)
</td>
<td>
<img>
<xsl:attribute name="src">
<xsl:value-of select="map/@src" />
</xsl:attribute>
<xsl:attribute name="alt">
<xsl:value-of select="./name" />
</xsl:attribute>
</img>
</td>
</tr>
</xsl:for-each>
</table>
<br />
<strong>Footnotes</strong>
<br />
<xsl:for-each select="counties/footnote">
<p>
<xsl:attribute name="id">
<xsl:value-of select="@id" />
</xsl:attribute>
<xsl:value-of select="@id" />. <xsl:value-of select="."/></p>
</xsl:for-each>
</body>
</html>
</xsl:template>
最后我正在转换的XML文件: http://puu.sh/n4XiV.xml
答案 0 :(得分:1)
xsl:value-of
只会获取节点的值。您需要使用xsl:apply-templates
让处理器继续按原样处理内容。
由于默认操作是复制,因此您将获得输出中标记内的所有内容。
答案 1 :(得分:0)
而不是:
<xsl:value-of select="etymology"/>
做的:
<xsl:apply-templates select="etymology/node()"/>
并确保您拥有复制a
和文本节点的模板。