<xsl:template match="Row">
<div id="listitem-{@ID}">
<div class="<xsl:value-of select="@Col-md" /> ">
<div class="features-item text-center">
<div class="features-icon">
<img>
<xsl:attribute name="src">
<xsl:value-of select="@Picture" /></xsl:attribute></img>
</div>
<h3 class="features-title font-alt">
<xsl:value-of select="@Title" />
</h3>
<div class="features-descr">
<xsl:value-of select="@Body" disable-output-escaping="yes" />
</div>
</div>
</div>
</div>
</xsl:template>
我是XSLT的新手。我创建了一个包含引导列值的SharePoint列表字段名Col-md
,例如col-Md-6
,col-md-4
,col-md-3
。我正在传递像<div class="<xsl:value-of select="@Col-md" /> ">
XSLT这样的值,但是我得到了错误。