Latest web development tutorials

<x:if> 標籤

JSP 標準標籤庫 JSP標準標籤庫

<x:if>標籤用於判斷一個XPath表達式的值,若為真,則執行其主體中的內容,若為假則其主體的內容將會被忽略。

語法格式

<x:if
  select="<string>"
  var="<string>"
  scope="<string>">   
   ...
</x:if>

屬性

<x:if>標籤有如下屬性:

屬性 描述 是否必要 默認值
select 需要計算的XPath表達式
var 存儲條件結果的變量
scope var屬性的作用域 Page


實例演示

接下來的例子告訴我們如何使用<x:if>標籤:

<%@ 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" %>

<html>
<head>
  <title>JSTL x:if 标签</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"/>

<x:if select="$output//book">
   Document has at least one <book> element.
</x:if>
<br />
<x:if select="$output/books[1]/book/price > 100">
   Book prices are very high
</x:if>

</body>
</html>

運行結果如下:


BOOKS INFO:
Document has at least one <book> element. 
Book prices are very high

JSP 標準標籤庫 JSP標準標籤庫