Latest web development tutorials

XSLT elemen-tersedia () fungsi

XSLT benda Fungsi Referensi benda Referensi XSLT Fungsi lengkap

Definisi dan Penggunaan

Unsur-tersedia () fungsi mengembalikan nilai Boolean yang menunjukkan apakah prosesor XSLT mendukung unsur-unsur tertentu.

Fungsi hanya dapat digunakan untuk menguji elemen tubuh Template berada. 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

tatabahasa

boolean element-available(string)

parameter

参数 描述
string 必需。规定要测试的元素。

contoh 1

<?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 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 , melihat hasil .


XSLT benda Fungsi Referensi benda Referensi XSLT Fungsi lengkap