<전체 XSLT 함수 참조
정의 및 사용
element- available() 함수는 지정된 요소가 XSLT 프로세서에 의해 지원되는지 여부를 나타내는 부울 값을 반환한다.
이 함수는 템플릿 본체 내에 발생 소자를 테스트하는데 사용될 수있다. 이러한 요소는 다음과 같습니다
- XSL : 적용 - 수입
- XSL : 적용 템플릿
- XSL : 속성
- XSL : 전화 템플릿
- XSL : 선택
- XSL : 코멘트
- XSL : 사본
- XSL : 복사의
- XSL : 요소
- XSL : 대체
- XSL : 대한-각각
- XSL : 경우
- XSL : 메시지
- XSL : 수
- XSL : 처리 지시
- XSL : 텍스트
- XSL : 가치의
- XSL : 변수
통사론
boolean element-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="element-available('xsl:comment')">
<p>xsl:comment is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>xsl:comment is not supported.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="element-available('xsl:delete')">
<p>xsl:delete is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>xsl:delete is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<전체 XSLT 함수 참조