最新的Web开发教程
 

XSLT function-available() Function


<完整XSLT函数参考

定义和用法

function- available()函数返回一个布尔值,指示所指定的功能是否被XSLT处理器支持。

您可以测试XSLT的功能和继承的XPath函数。


句法

boolean function-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="function-available('sum')">
<p>sum() is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>sum() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="function-available('current')">
<p>current() is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>current() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

查看XSL文件 ,并查看结果


<完整XSLT函数参考