最新の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要素のリファレンス