Najnowsze tutoriale tworzenie stron internetowych
 

XSLT element-available() Function


<Pełna Funkcja XSLT referencyjny

Definicja i Wykorzystanie

element- available() zwraca wartość logiczną, która wskazuje, czy element określony jest obsługiwany przez procesor XSLT.

Funkcja ta może być używana tylko do testowania elementów, które mogą wystąpić w ciele szablonu. Te elementy to:

  • xsl: apply-import
  • xsl: apply-templates
  • xsl: atrybuty
  • xsl: call-template
  • xsl: choose
  • xsl: komentarz
  • xsl: copy
  • xsl: copy-of
  • xsl: Element
  • xsl: awaryjna
  • xsl: for-each
  • xsl: if
  • xsl: Komunikat
  • xsl: numer
  • xsl: instrukcja przetwarzania
  • xsl: text
  • xsl: value-of
  • xsl: variable

Składnia

boolean element-available(string)

parametry

Parametr Opis
string Wymagany. Określa element do przetestowania

Przykład 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>

Zobacz plik XSL i zobaczyć rezultat .


<Pełna Funkcja XSLT referencyjny