<完整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>
<完整XSLT函數參考