<!-- Section: /report/detail -->
<xsl:template match="/report/detail">
<div href="./lf_web" style="left: 0.0ex; position: absolute"><xsl:value-of select="./lf_po"/></div>
<br/>
</xsl:template>
在此代码中,我尝试使用taq元素“./lf_web
”的内容。
任何人都可以帮助我。
它位于.xsl文件中并链接到.xml数据源
答案 0 :(得分:0)
您应该使用XSL标记您的问题,而不是 div 和 href ,这对您的问题并不重要。
一种方法是首先检索变量中的值。我喜欢这种方式,因为你可以使用函数:
<xsl:variable name="website_uri" as="xs:string">
<xsl:value-of select="info/uri"/>
</xsl:variable>
<xsl:variable name="protocol" as="xs:string">
<xsl:value-of select="substring-before($website_uri, '://')"/>
</xsl:variable>
我将展示如何使用变量:在值的名称前面加上$符号。但是,要在不同的属性中执行此操作,您需要将它放在大括号之间;
<a href="{$url}">...</a>
现在我认为你可以做你想要实现内联的查询,但我没有看到一个很好的例子。