<Lengkap XSLT Fungsi Referensi
Definisi dan Penggunaan
The element- available() fungsi mengembalikan nilai Boolean yang menunjukkan apakah elemen tertentu didukung oleh prosesor XSLT.
Fungsi ini hanya dapat digunakan untuk menguji unsur-unsur yang dapat terjadi dalam tubuh Template. Unsur-unsur ini adalah:
- xsl: apply-impor
- xsl: apply-templates
- xsl: atribut
- xsl: call-template
- xsl: memilih
- xsl: comment
- xsl: copy
- xsl: copy-of
- xsl: elemen
- xsl: fallback
- xsl: for-masing
- xsl: jika
- xsl: message
- xsl: Nomor
- xsl: pengolahan instruksi
- xsl: text
- xsl: value-of
- xsl: variabel
Sintaksis
boolean element-available(string)
parameter
Parameter | Deskripsi |
---|---|
string | Wajib. Menentukan elemen untuk menguji |
contoh 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>
Lihat file XSL dan melihat hasilnya .
<Lengkap XSLT Fungsi Referensi