<Lengkap XSLT Fungsi Referensi
Definisi dan Penggunaan
The function- available() fungsi mengembalikan nilai Boolean yang menunjukkan apakah fungsi tertentu didukung oleh prosesor XSLT.
Anda dapat menguji fungsi XSLT dan fungsi XPath yang diwariskan.
Sintaksis
boolean function-available(string)
parameter
Parameter | Deskripsi |
---|---|
string | Wajib. Menentukan fungsi 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="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>
Lihat file XSL dan melihat hasilnya
<Lengkap XSLT Fungsi Referensi