假设我有这个xml文件
<myxml>
<section name="AAA">
<Title>TEST</Title>
<Log>\\PC\log.log</Log>
<Data>1267</Data>
</section>
</myxml>
现在我正在尝试使用xsl文件,因此我将使用Title进行引用 显示文本并将Log记录为链接。 我尝试过使用这些但不能让这个一起工作
<xsl:attribute name="href">
<xsl:value-of select="myxml/AAA/Title"/>
感谢。
答案 0 :(得分:1)
使用模板
<xsl:template match="section">
<a href="{Log}">
<xsl:value-of select="Title"/>
</a>
</xsl:template>