XSLT <xsl:processing-instruction> 元素
-
定义和使用
<xsl:processing-instruction> 元素将处理指令写入输出。 -
语法
<xsl:processing-instruction name="process-name"> <!-- Content:template --> </xsl:processing-instruction>
-
参数
属性 值 描述 name process-name 必选。指定处理指令的名称 -
示例
<xsl:processing-instruction name="xml-stylesheet"> href="style.css" type="text/css" </xsl:processing-instruction>
创建此标记:<?xml-stylesheet href="style.css" type="text/css"?>