gpt4 book ai didi

php - 如何使用 XSL 代码在 HTML 表格中显示图像?

转载 作者:可可西里 更新时间:2023-10-31 23:39:45 27 4
gpt4 key购买 nike

我为我的 XML 网络服务创建了一个 XSL 样式表。我的 HTML 上有数据库输出的图像链接。但是我的 XSL 只显示链接而不显示链接包含的图像。我想使用 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>

我想在表格的图像列中显示图像。我该怎么做?

最佳答案

代替:

<td><xsl:value-of select="Image" /></td>

尝试:

<td><img src="{Image}"></img></td>

未经测试,因为未提供 XML 源。

关于php - 如何使用 XSL 代码在 HTML 表格中显示图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29873227/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com