我正在使用以下 xsl 代码在 html 上显示图像。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
<img src="http://www.tizag.com/pics/htmlT/sunset.gif" alt="MM"/>
<img src="c:\view.png" alt=""/>
</xsl:template>
</xsl:stylesheet>
我只在 html 上看到第一个图像,即来自http://www.tizag.com/pics/htmlT/sunset.gif的图像,但来自第二个图像(来自“C:\view.png”)没有得到显示。
对于存储在 xml 所在文件夹中的图像,其行为相同。
有什么想法吗 ?