<x:param>
标签与<x:transform>
标签一起使用,以在XSLT样式表中设置参数。
属性
<x:param>
标签具有以下属性 -
属性 | 描述 | 必需 | 默认 |
---|---|---|---|
name |
要设置的XSLT参数的名称 | 是 | 主体 |
value |
要设置的XSLT参数的值 | 否 | — |
示例
假设有以下XSLT样式表文件:style1.xsl ,请注意使用<xsl:param ...>
标签和变量{$bgColor}
-
文件:style1.xsl
<?xml version = "1.0"?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0">
<xsl:output method = "html" indent = "yes"/>
<xsl:param name = "bgColor"/>
<xsl:template match = "/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match = "books">
<table border = "1" width = "50%" bgColor = "{$bgColor}">
<xsl:for-each select = "book">
<tr>
<td><i><xsl:value-of select = "name"/></i></td>
<td><xsl:value-of select = "author"/></td>
<td><xsl:value-of select = "price"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
考虑以下JSP文件,使用<x:transform>
标签中的<x:param>
标签来定义bgColor
的值,
以下示例将显示如何使用<x:param>
标签,编写一个JSP文件:xml_param.jsp 如下所示:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>jstl xml:param 标签示例</title>
</head>
<body>
<div style="margin: auto; width: 90%">
<h3>图书信息:</h3>
<c:set var="xmltext">
<books>
<book>
<name>Three mistakes of my life</name>
<author>Newsu</author>
<price>20</price>
</book>
<book>
<name>Tomorrow land</name>
<author>Bird</author>
<price>190</price>
</book>
</books>
</c:set>
<c:import url = "http://localhost:8080/jstl/style1.xsl" var = "xslt"/>
<x:transform xml = "${xmltext}" xslt = "${xslt}">
<x:param name = "bgColor" value = "blue"/>
</x:transform>
</div>
</body>
</html>
运行上述项目代码,得到以下结果如下 -