目录搜索
XSLT 基础教程XSL 语言XSLT 简介XSLT 浏览器XSLT - 转换XSLT <xsl:template> 元素XSLT <xsl:value-of> 元素XSLT <xsl:for-each> 元素XSLT <xsl:sort> 元素XSLT <xsl:if> 元素XSLT <xsl:choose> 元素XSLT <xsl:apply-templates> 元素XSLT - 在客户端XSLT - 在服务器端XSLT - 编辑 XMLXML 编辑器XSLT 元素参考手册XSLT <xsl:apply-imports> 元素XSLT <xsl:apply-templates> 元素XSLT <xsl:attribute> 元素XSLT <xsl:attribute-set> 元素XSLT <xsl:call-template> 元素XSLT <xsl:choose> 元素XSLT <xsl:comment> 元素XSLT <xsl:copy> 元素XSLT <xsl:copy-of> 元素XSLT <xsl:decimal-format> 元素XSLT <xsl:element> 元素XSLT <xsl:fallback> 元素XSLT <xsl:for-each> 元素XSLT <xsl:if> 元素XSLT <xsl:import> 元素XSLT <xsl:include> 元素XSLT <xsl:key> 元素XSLT <xsl:message> 元素XSLT <xsl:namespace-alias> 元素XSLT <xsl:number> 元素XSLT <xsl:otherwise> 元素XSLT <xsl:output> 元素XSLT <xsl:param> 元素XSLT <xsl:preserve-space> 和 <xsl:strip-space> 元素XSLT <xsl:processing-instruction> 元素XSLT <xsl:sort> 元素XSLT <xsl:stylesheet> 和 <xsl:transform> 元素XSLT <xsl:template> 元素XSLT <xsl:text> 元素XSLT <xsl:value-of> 元素XSLT <xsl:value-of> 元素XSLT <xsl:variable> 元素XSLT <xsl:when> 元素XSLT <xsl:with-param> 元素XSLT 函数XSLT current() 函数XSLT document() 函数XSLT element-available() 函数XSLT format-number() 函数XSLT function-available() 函数XSLT generate-id() 函数XSLT key() 函数XSLT system-property() 函数XSLT unparsed-entity-uri() 函数
文字

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

上一篇:下一篇: