ຕົວອາດີດ function-available() XSLT

ການອະທິບາຍ ແລະ ການນໍາໃຊ້

ຕົວອາດີດ function-available() ຈະກັບຄືນຄວາມຈິງຄັນທີ່ສະແດງວ່າຜູ້ຄົ້ນຫາ XSLT ສາມາດສະໜັບສະໜູນຕົວອາດີດດັ່ງກ່າວຫຼືບໍ່.

ທ່ານສາມາດທົດລອງຕົວອາດີດ XSLT ແລະ XPath ທີ່ຖືກຫຼັງຄາດ.

ວິທະຍາສາດ

boolean function-available(string)

ປະເພດ

ປະເພດ ອະທິບາຍ
string ຕ້ອງການ。ຕິດຕາມການທົດລອງຕົວອາດີດ。

ຕົວຢ່າງ

<?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() ສາມາດໃຊ້.</p>
</xsl:when>
<xsl:otherwise>
<p>sum() ບໍ່ສາມາດໃຊ້.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="function-available('current')">
<p>current() ສາມາດໃຊ້.</p>
</xsl:when>
<xsl:otherwise>
<p>current() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

查看 XSL 文件查看结果