这个“$PAGE_SCOPE[title]”将显示页面的标题我想根据标题显示不同的标题所以我试图在一个变量中获取页面标题,这个变量在段落标签中显示标题但它是在 when 循环中不起作用。
<xsl:variable name="PageTitle" select="'$PAGE_SCOPE[title]'" />
<xsl:variable name="test"><xsl:value-of select="$PageTitle" /></xsl:variable>
<p><xsl:value-of select="$test" /></p>
<xsl:choose>
<xsl:when test="$test='RAQ'">
<h1 class="h3"><strong>.....</strong></h1>
</xsl:when>
<xsl:otherwise>
<h1 class="h3"><strong>Error</strong></h1>
</xsl:otherwise>
</xsl:choose>
任何指针都会有所帮助。