<x:param> 标签

<x:param>标签与<x:transform>标签一同使用,用于设置XSLT样式表的参数。

语法格式

  1. <x:param name="<string>" value="<string>"/>

属性

<x:param>标签有如下属性:

属性描述是否必要默认值
nameXSLT参数的名称Body
valueXSLT参数的值

实例演示

style.xsl文件代码如下,使用xsl:param…标签与{$bgColor}变量:

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl=
  3. "http://www.w3.org/1999/XSL/Transform" version="1.0">
  4. <xsl:output method="html" indent="yes"/>
  5. <xsl:param name="bgColor"/>
  6. <xsl:template match="/">
  7. <html>
  8. <body>
  9. <xsl:apply-templates/>
  10. </body>
  11. </html>
  12. </xsl:template>
  13. <xsl:template match="books">
  14. <table border="1" width="50%" bgColor="{$bgColor}">
  15. <xsl:for-each select="book">
  16. <tr>
  17. <td>
  18. <i><xsl:value-of select="name"/></i>
  19. </td>
  20. <td>
  21. <xsl:value-of select="author"/>
  22. </td>
  23. <td>
  24. <xsl:value-of select="price"/>
  25. </td>
  26. </tr>
  27. </xsl:for-each>
  28. </table>
  29. </xsl:template>
  30. </xsl:stylesheet>

mian.jsp文件代码如下,在x:transform标签中使用x:param 标签:

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
  5. <html>
  6. <head>
  7. <title>JSTL x:param 标签</title>
  8. </head>
  9. <body>
  10. <h3>Books Info:</h3>
  11. <c:set var="xmltext">
  12. <books>
  13. <book>
  14. <name>Padam History</name>
  15. <author>ZARA</author>
  16. <price>100</price>
  17. </book>
  18. <book>
  19. <name>Great Mistry</name>
  20. <author>NUHA</author>
  21. <price>2000</price>
  22. </book>
  23. </books>
  24. </c:set>
  25. <c:import url="http://localhost:8080/style.xsl" var="xslt"/>
  26. <x:transform xml="${xmltext}" xslt="${xslt}">
  27. <x:param name="bgColor" value="grey"/>
  28. </x:transform>
  29. </body>
  30. </html>

运行结果如下:

<x:param> 标签 - 图1