我爲我的XML Web服務創建了一個XSL樣式表。我有我的HTML數據庫輸出的圖像鏈接。但我的XSL只顯示鏈接,但不包含鏈接所包含的圖像。我想使用XSL在HTML表格中顯示直接圖像。如何使用XSL代碼在HTML表格中顯示圖像?
這是我的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>Birdcatch XSLT</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>id</th>
<th>Species</th>
<th width="50%">About_bird</th>
<th>Date_added</th>
<th>Address</th>
<th>Age</th>
<th>Sex</th>
<th>Latitiude</th>
<th>Longitiude</th>
<th>Image</th>
<th>Added_by</th>
</tr>
<xsl:for-each select="Birdcatch/BIrds/Bird">
<tr>
<td><xsl:value-of select="@id" /></td>
<td><xsl:value-of select="Species" /></td>
<td><xsl:value-of select="About_bird" /></td>
<td><xsl:value-of select="Date_added" /></td>
<td><xsl:value-of select="Address" /></td>
<td><xsl:value-of select="Age" /></td>
<td><xsl:value-of select="Sex" /></td>
<td><xsl:value-of select="Location/Latitiude" /></td>
<td><xsl:value-of select="Location/Longitiude" /></td>
<td><xsl:value-of select="Image" /></td>
<td><xsl:value-of select="Added_by" /></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我想在表中的圖像col列來顯示圖像。我怎樣才能做到這一點?
這工作非常好:)謝謝 –