我正在尝试使 XML 文件中的 URL 可单击。 下面是我的 XML 和 XSL 文件,它们可以很好地协同工作。
我尝试在 XML 文件中使用 XLink 和 href,但没有成功。
如何使 XML 文件中的 URL 可点击?
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="file.xsl" ?>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="1.xsl" ?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Johnny</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<url>http://www.yahoo.com</url>
</cd>
</catalog>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>XSL</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">Artist</th>
<th style="text-align:left">Country</th>
<th style="text-align:left">Company</th>
<th style="text-align:left">Price</th>
<th style="text-align:left">URL</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
<td><xsl:value-of select="country"/></td>
<td><xsl:value-of select="company"/></td>
<td><xsl:value-of select="price"/></td>
<td><xsl:value-of select="url"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
在编写任何 XSLT 之前,您应该真正知道您想要什么输出。要使 HTML 中的链接可点击,您可以这样做...
<a href="http://www.yahoo.com">http://www.yahoo.com</a>
因此,在您的 XSLT 中,不要这样做......
<td><xsl:value-of select="url"/></td>
这样做...
<td>
<a href="{url}">
<xsl:value-of select="url"/>
</a>
</td>
请注意
href
属性中花括号的使用。这称为属性值模板。大括号表示要计算的表达式,而不是按字面输出。
我会尝试的坦克。我的错误是误昏迷或kurl simbil。好的建议。