位置:首頁 > Java技術 > JSP教學 > JSTL <c:out>標簽

JSTL <c:out>標簽

<c:out>標記顯示表達式,類似的方式<%= %>工作和<c:out>標記可讓您使用更簡單的一個差的結果“.”符號來訪問屬性。例如,要訪問customer.address.street 隻使用標簽<c:out value="customer.address.street"/>。

<c:out>標記可以自動轉義XML標記,因此不計算為實際的標簽。

屬性:

<c:out>標記具有以下屬性:

屬性 描述 Required Default
value Information to output Yes None
default Fallback information to output No body
escapeXml True if the tag should escape special XML characters No true

示例:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:out> Tag Example</title>
</head>
<body>
<c:out value="${'<tag> , &'}"/>
</body>
</html>

這將產生以下結果:

<tag> , &