XSLT <xsl:param> 元素

XSLT 元素参考手册 完整的 XSLT 元素参考手册

定义和用法

<xsl:param> 元素用于声明局部或全局参数。

注意:如果作为顶层元素(top-level element)来声明,就是全局参数。如果在模板内声明参数,就是局部参数。

语法

<xsl:param
 name="name"
 select="expression">

 <!-- Content:template -->

 </xsl:param>

属性

属性描述
namename必需。规定参数的名称。
selectexpression可选。规定 XPath 表达式,该表达式是参数的默认值。

实例 1

<?xml version="1.0" encoding="ISO-8859-1"?>
 <xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:variable name="xx">
 <html>
 <body>
 <xsl:call-template name="show_title">
 <xsl:with-param name="title" />
 </xsl:call-template>
 </body>
 </html>
 </xsl:variable>

 <xsl:template name="show_title" match="/">
 <xsl:param name="title" />
 <xsl:for-each select="catalog/cd">
 <p>Title: <xsl:value-of select="$title" /></p>
 </xsl:for-each>
 </xsl:template>

 </xsl:stylesheet>

XSLT 元素参考手册 完整的 XSLT 元素参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号