最新的Web开发教程
 

XSLT <xsl:fallback> Element


<完整XSLT元素参考

定义和用法

所述<xsl:fallback>元素指定交替代码,如果XSL处理器不支持一个XSL元件来运行。


句法

<xsl:fallback>

  <!-- Content: template -->

</xsl:fallback>

属性

没有

实施例1

这个例子是通过每个假定循环"title"与由元素<xsl:loop>元素。 如果XSL处理器不支持该元件(which it does not) ,它将使用<:xsl:for-each>元素,而不是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="catalog/cd">
  <xsl:loop select="title">
    <xsl:fallback>
      <xsl:for-each select="title">
        <xsl:value-of select="."/>
      </xsl:for-each>
    </xsl:fallback>
  </xsl:loop>
</xsl:template>

</xsl:stylesheet>

<完整XSLT元素参考