ກອງປະກອບ XSLT element-available()
ການອະທິບາຍ ແລະ ການນໍາໃຊ້
ກອງປະກອບ element-available() ທີ່ກັບຄືນວ່າຄຸນສະຖານະບັນຊີ ທີ່ສະແດງວ່າຈະການດຳເນີນ XSLT ທີ່ສະໜັບສະໜູນປະກອບສິ່ງທີ່ຈະກໍານົດ.
ກອງປະກອບການດັ່ງກ່າວພຽງແຕ່ສະຖານທີ່ຢູ່ໃນຮູບແບບ. ກອງປະກອບດັ່ງກ່າວຢູ່ບ່ອນນັ້ນແມ່ນ:
- xsl:apply-imports
- xsl:apply-templates
- xsl:attributes
- xsl:call-template
- xsl:choose
- xsl:comment
- xsl:copy
- xsl:copy-of
- xsl:element
- xsl:fallback
- xsl:for-each
- xsl:if
- xsl:message
- xsl:number
- xsl:processing instruction
- xsl:text
- xsl:value-of
- xsl:variable
ຂອບເຂດວິທະຍານ
boolean element-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="element-available('xsl:comment')"> <p>xsl:comment ໄດ້ສະໜັບສະໜູນ.</p> </xsl:when> <xsl:otherwise> <p>xsl:comment ບໍ່ສະໜັບສະໜູນ.</p> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="element-available('xsl:delete')"> <p>xsl:delete ໄດ້ສະໜັບສະໜູນ.</p> </xsl:when> <xsl:otherwise> <p>xsl:delete is not supported.</p> </xsl:otherwise> </xsl:choose> </body> </html> </xsl:template> </xsl:stylesheet>