最新的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元素参考