XSLT function-available() function

Pagsasakop at Paggamit

Ang function-available() function ay ibibigay ng isang boolean value, na nagtutukoy kung ang XSLT processor ay sumusuporta sa nakatalagang function.

Maaari kang subukin ang XSLT function at ang na-aakay na XPath function.

Mga Tagubilin

boolean function-available(string)

Parameter

Parameter Paglalarawan
string Hinihingi. Iminungkahi ang function na dapat susubukin.

Egemplo

<?xml version="1.0" encoding="ISO-8859-1"?>
<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() ay suportado.</p>
</xsl:when>
<xsl:otherwise>
<p>sum() ay hindi suportado.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="function-available('current')">
<p>current() ay suportado.</p>
</xsl:when>
<xsl:otherwise>
<p>current() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

查看 XSL 文件查看结果