1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<html>
<head>
<title>JSTL: XML Support -- Parse / When</title>
</head>
<body bgcolor="#FFFFFF">
<h3>Parse / When</h3>
<x:parse var="a">
<a>
<b>
<c foo="bar">
foo
</c>
</b>
<d>
bar
</d>
</a>
</x:parse>
<x:choose>
<x:when select='$a//c[@foo="bar"]'>
@foo = bar
</x:when>
<x:when select='$a//c[@foo="foo"]'>
@foo = foo
</x:when>
<x:otherwise>
@foo not recognized
</x:otherwise>
</x:choose>
<br />
<x:choose>
<x:when select='$a//c[@foo="foo"]'>
@foo = foo
</x:when>
<x:when select='$a//c[@foo="bar"]'>
@foo = bar
</x:when>
<x:otherwise>
@foo not recognized
</x:otherwise>
</x:choose>
<br />
<x:choose>
<x:when select='$a//c[@foo="barr"]'>
@foo = barr
</x:when>
<x:when select='$a//c[@foo="fooo"]'>
@foo = fooo
</x:when>
<x:otherwise>
@foo not recognized
</x:otherwise>
</x:choose>
<br />
<hr />
</body>
</html>
|