发布于 2015-08-17 14:54:35 | 62 次阅读 | 评论: 0 | 来源: 网络整理

<x:out>标签会显示一个XPath表达式的结果,它的功能类似于<%= %>JSP语法。

属性:

<x:out>标签具有以下属性:

属性 描述 必须 默认
select XPath表达式计算为字符串,通常使用XPath变量 Yes None
escapeXml true - 如果标记应该转义特殊XML字符 No true

示例:

让我们举个例子,将覆盖标签(1)<x:out>(2)<x:parse>。


<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>

<html>
<head>
  <title>JSTL x:out Tags</title>
</head>
<body>
<h3>Books Info:</h3>

<c:set var="xmltext">
  <books>
    <book>
      <name>Padam History</name>
      <author>ZARA</author>
      <price>100</price>
    </book>
    <book>
      <name>Great Mistry</name>
      <author>NUHA</author>
      <price>2000</price>
    </book>
  </books>
</c:set>

<x:parse xml="${xmltext}" var="output"/>
<b>The title of the first book is</b>: 
<x:out select="$output/books/book[1]/name" />
<br>
<b>The price of the second book</b>: 
<x:out select="$output/books/book[2]/price" />
</body>
</html>

这将产生以下结果:

BOOKS INFO:

The title of the first book is: Padam History 
The price of the second book: 2000
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务