Los últimos tutoriales de desarrollo web
 

XSLT function-available() Function


<Completa XSLT Referencia de funciones

Definición y Uso

El function- available() función devuelve un valor booleano que indica si la función especificada está soportado por el procesador XSLT.

Es posible probar las funciones XSLT y XPath las funciones heredadas.


Sintaxis

boolean function-available(string)

parámetros

Parámetro Descripción
string Necesario. Especifica la función a prueba

Ejemplo 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>

Ver el archivo XSL y ver el resultado


<Completa XSLT Referencia de funciones