<完整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元素參考