当前位置: 首页 > 网络学院 > XML相关教程 > XSL/XSLT > XSLT <xsl:apply-imports> 元素

XSL/XSLT
XSL 语言
XSLT 介绍
XSLT 浏览器
XSLT 转换
<xsl:template>
<xsl:value-of>
<xsl:for-each>
<xsl:sort>
<xsl:if>
<xsl:choose>
<xsl:apply-templates>
XSLT - 客户端
XSLT - 服务器端
XSLT - 编辑XML
XSLT 摘要
XSLT 元素参考
XSLT 函数
XSL 编辑器

XSL/XSLT 中的 XSLT <xsl:apply-imports> 元素


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 242 ::
收藏到网摘: n/a

Definition and Usage
定义和用法

The <xsl:apply-imports> element applies a template rule from an imported style sheet.
<xsl:apply-imports>元素遵循的是导入的样式表模版规则。

Template rules in imported style sheets have lower precedence than template rules in main style sheets. The <xsl:apply-imports> is used when we want to use a template rule from the imported style sheet rather than an equivalent rule in the main style sheet.
导入样式表中的模版规则与主样式表中的模版规则相比,优先级前者比后者低。当你希望使用导入样式表中的模版规则时,你可以书写<xsl:apply-imports>标签。


Syntax
语法

<xsl:apply-imports/>

Attributes
属性

None无

Example
案例

Suppose we have a style sheet called "standard.xsl" that contains a template rule for message elements:
假设我们拥有一个名为“standard.xsl”的样式表,它包含了消息元素的模版规则,具体如下:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="message">
<h2><xsl:apply-templates/></h2>
</xsl:template>
</xsl:stylesheet>

Another style sheet could import "standard.xsl", and modify the message elements, like this:
另外一张样式表中导入名为“standard.xsl”的样式表文件,用于修饰消息元素,具体如下:

<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="standard.xsl"/>
<xsl:template match="message">
<div style="border:solid blue">

<xsl:apply-imports/>
</div>
</xsl:template>
</xsl:stylesheet>

The result would be to transform a message into an element of the form:
输出的结果是:将一个消息元素转换成一个表单元素:

<div style="border:solid blue"><h2>...</h2></div>

评论 (0) All

登陆 | 还没注册?