<完整XSLT函数参考
定义和用法
的element- available()函数返回一个布尔值,指示所指定的元件是否由XSLT处理器支持。
该功能只能用于测试可能发生在一个模板体元件。 这些元素是:
- XSL:适用-进口
- XSL:申请模板
- XSL:属性
- XSL:呼叫模板
- XSL:选择
- XSL:评论
- XSL:复制
- XSL:复制,
- XSL:元
- XSL:回退
- 的xsl:for-每个
- XSL:如果
- XSL:消息
- XSL:数
- XSL:处理指令
- XSL:文本
- XSL:价值 -
- XSL:变量
句法
boolean element-available(string)
参数
参数 | 描述 |
---|---|
string | 需要。 指定测试元 |
实施例1
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:choose>
<xsl:when test="element-available('xsl:comment')">
<p>xsl:comment is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>xsl:comment is not supported.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="element-available('xsl:delete')">
<p>xsl:delete is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>xsl:delete is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<完整XSLT函数参考