当前位置: 首页 > 网络学院 > XML相关教程 > XSL/XSLT > XSLT <xsl:processing-instruction> 元素
The <xsl:processing-instruction> element writes a processing instruction to the output.
<xsl:processing-instruction> 元素的作用是:向输出文档中写入一个处理指令。
<xsl:processing-instruction name="process-name"> <!-- Content:template --> </xsl:processing-instruction> |
属性 | 值 | 描述 |
---|---|---|
name | process-name | Required. Specifies the name of the processing instruction 必要参数。指定处理指令的名称 |
This code:
代码如下:
<xsl:processing-instruction name="xml-stylesheet"> href="style.css" type="text/css" </xsl:processing-instruction> |
Creates this tag:
创建标签:
<?xml-stylesheet href="style.css" type="text/css"?> |