你不能写
<a href="<xsl:value-of select="youtube-url"/>">Video</a>
但你可以写
<a href="{youtube-url}">Video</a>
或者
<a href="{$youtube}">Video</a>
那是一个属性值模板。
不过,它只适用于属性内。您不能在其他文本中使用它。(类似的东西<div class="video-player">{$youtube}</div>
不起作用 -<xsl:value-of>
改为使用。)