<x:when select="XPathExpression">
body content(標籤體)
</x:when>
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:import url="bookInfo.xml" var="xmlFile" charEncoding="gbk"/> <x:parse var="bookInfo" doc="${xmlFile}"></x:parse> <x:choose> <x:when select="$bookInfo/books/book[name='JSP程式開發範例寶典'][sellAmount/ @value>5000]">非常暢銷</x:when> <x:when select="$bookInfo/books/book[name='JSP程式開發範例寶典'][sellAmount/ @value<5000][sellAmount/@value>2000]">基本暢銷</x:when> <x:when select="$bookInfo/books/book[name='JSP程式開發範例寶典'][sellAmount/ @value<2000]">不暢銷</x:when> </x:choose>