有一个带查找的列表字段。还有一个CQWP web部件,它使用此列表作为源,并使用添加到Itemstyle.XSL中的自定义XSL样式。还有一个问题是如何将此字段呈现为链接?
字段名称为"类别"和
<xsl:value-of select="@Category" />
返回带有项目标题的字符串(如"某些类别")。但我需要一个URL或ID。有什么建议吗?
试试这样的东西:
<a>
<xsl:attribute name="href">
<xsl:value-of select="@Url" />
</xsl:attribute>
<xsl:value-of select="@Category" />
</a>
使用禁用输出转义,例如:
{less than symbol}xsl:value-of disable-output-escaping="yes" select="@Category" /{greater than symbol}