<x:param> 标签


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

属性

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

属性 描述 是否必要 默认值
name XSLT参数的名称 Body
value XSLT参数的值

实例演示

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.  
  5. <xsl:output method="html" indent="yes"/>
  6. <xsl:param name="bgColor"/>
  7.  
  8. <xsl:template match="/">
  9. <html>
  10. <body>
  11. <xsl:apply-templates/>
  12. </body>
  13. </html>
  14. </xsl:template>
  15.  
  16. <xsl:template match="books">
  17. <table border="1" width="50%" bgColor="{$bgColor}">
  18. <xsl:for-each select="book">
  19. <tr>
  20. <td>
  21. <i><xsl:value-of select="name"/></i>
  22. </td>
  23. <td>
  24. <xsl:value-of select="author"/>
  25. </td>
  26. <td>
  27. <xsl:value-of select="price"/>
  28. </td>
  29. </tr>
  30. </xsl:for-each>
  31. </table>
  32. </xsl:template>
  33. </xsl:stylesheet>

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

  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
  3.  
  4. <html>
  5. <head>
  6. <title>JSTL x:param 标签</title>
  7. </head>
  8. <body>
  9. <h3>Books Info:</h3>
  10. <c:set var="xmltext">
  11. <books>
  12. <book>
  13. <name>Padam History</name>
  14. <author>ZARA</author>
  15. <price>100</price>
  16. </book>
  17. <book>
  18. <name>Great Mistry</name>
  19. <author>NUHA</author>
  20. <price>2000</price>
  21. </book>
  22. </books>
  23. </c:set>
  24.  
  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.  
  30. </body>
  31. </html>

运行结果如下:

x-param