我想在每张图片下面添加一个标题。我的xsl文件看起来就是这样我循环遍历每个图像:
<Testresult>
<xsl:for-each select="Testresult/image">
<img src="{@href}" width="333px" length="350px"/>
<title><xsl:value-of select="//Type"/></title>
<xsl:attribute name="src">
<xsl:value-of select="Testresult/Image"/>
</xsl:attribute>
</xsl:for-each>
</Testresult>
我的xml文件如下所示:
<Testresult>
<image href="c:\image1.png"/>
<image href="c:\image2.png"/>
</Testresult>
输出应如下所示:
感谢您的帮助!
答案 0 :(得分:0)
试试这个样式表:
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output indent="yes"/>
<xsl:template match="/">
<Testresult>
<xsl:for-each select="Testresult/image">
<img src="{@href}" width="333px" length="350px"/>
<title><xsl:value-of select="@href"/></title>
</xsl:for-each>
</Testresult>
</xsl:template>
</xsl:stylesheet>