Latest web development tutorials

<X: if> tag

JSP Standard-Tag-Bibliothek JSP Standard - Tag - Bibliothek

<X: if> Tag verwendet wird, um den Wert eines XPath-Ausdruck, um zu bestimmen, ob es wahr ist, dann wird der Inhalt seines Körpers, wenn ihr Inhalt falschen Körper ignoriert werden soll.

Syntax

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

Immobilien

<X: wenn> Tag hat folgende Attribute:

Immobilien Beschreibung notfalls Default
wählen XPath-Ausdruck berechnet werden es ist keine
var Die Ergebnisse der variable Lagerbedingungen keine keine
Anwendungsbereich Scope var Attribut keine Seite


Beispiele Demo

Das folgende Beispiel zeigt, wie Sie die <x: if> Tag zu benutzen:

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

Ergebnisse sind wie folgt:


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

JSP Standard-Tag-Bibliothek JSP Standard - Tag - Bibliothek