如何向XML添加可点击的链接?

问题描述 投票:0回答:2

我正在尝试使 XML 文件中的 URL 可单击。 下面是我的 XML 和 XSL 文件,它们可以很好地协同工作。

我尝试在 XML 文件中使用 XLink 和 href,但没有成功。

如何使 XML 文件中的 URL 可点击?

XML

<?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>

XSL

<?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>
html xml xslt hyperlink xlink
2个回答
2
投票

在编写任何 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
属性中花括号的使用。这称为属性值模板。大括号表示要计算的表达式,而不是按字面输出。


0
投票

我会尝试的坦克。我的错误是误昏迷或kurl simbil。好的建议。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.