XSLT function-available() 函数

定义和用法

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

你可以测试 XSLT 函数和被继承的 XPath 函数。

语法

  1. boolean function-available(string)

参数

参数 描述
string 必需。规定要测试的函数。

例子

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <xsl:choose>
  9. <xsl:when test="function-available('sum')">
  10. <p>sum() is supported.</p>
  11. </xsl:when>
  12. <xsl:otherwise>
  13. <p>sum() is not supported.</p>
  14. </xsl:otherwise>
  15. </xsl:choose>
  16. <xsl:choose>
  17. <xsl:when test="function-available('current')">
  18. <p>current() is supported.</p>
  19. </xsl:when>
  20. <xsl:otherwise>
  21. <p>current() is not supported.</p>
  22. </xsl:otherwise>
  23. </xsl:choose>
  24. </body>
  25. </html>
  26. </xsl:template>
  27.  
  28. </xsl:stylesheet>