최신 웹 개발 튜토리얼
 

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 함수 참조