Najnowsze tutoriale tworzenie stron internetowych
 

XSLT <xsl:processing-instruction> Element


<Pełna XSLT element odniesienia

Definicja i Wykorzystanie

<xsl:processing-instruction> Element zapisuje instrukcję przetwarzania do wyjścia.


Składnia

<xsl:processing-instruction
name="process-name">

  <!-- Content:template -->

</xsl:processing-instruction>

Atrybuty

Atrybut Wartość Opis
nameprocess-name Wymagany. Określa nazwę instrukcji przetwarzania

Przykład 1

Ten kod:

<xsl:processing-instruction name="xml-stylesheet">
href="style.css" type="text/css"
</xsl:processing-instruction>

Tworzy to tag:

<?xml-stylesheet href="style.css" type="text/css"?>

<Pełna XSLT element odniesienia