最新的Web開發教程
 

XSLT <xsl:processing-instruction> Element


<完整XSLT元素參考

定義和用法

所述<xsl:processing-instruction>元素寫入處理指令的輸出。


句法

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

  <!-- Content:template -->

</xsl:processing-instruction>

屬性

屬性 描述
nameprocess-name 需要。 指定處理指令的名稱

實施例1

此代碼:

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

創建此標籤:

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

<完整XSLT元素參考