XSLT 入门教程 XSLT <xsl:processing-instruction> 元素

2024-02-26 开发教程 XSLT 入门教程 匿名 5

XSLT <xsl:processing-instruction> 元素

XSLT <xsl:processing-instruction> 元素向输出写一条执行指令。



定义和用法

<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"?>