XSLT <xsl:fallback> 元素
❮ 完整的 XSLT 元素参考
定义和用法
如果 XSL 处理器不支持 XSL 元素,<xsl:fallback> 元素指定要运行的备用代码。
语法
<xsl:fallback>
<!-- Content: template -->
</xsl:fallback>
属性
None
实例 1
这个例子应该循环遍历每个 "title" 元素和一个组成的 <xsl:loop> 元素。 如果 XSL 处理器不支持这个元素(它不支持),它将使用 <: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 元素参考