JSTL <c:remove> 标签用来删除某个范围内的值。
JSP <c:remove> 标签语法如下:
<c:remove var="varname" [scope="page|request|session|application] />
其中:
下面为 <c:remove> 标签的简单实例。
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<title>城东书院(www.cdsy.xyz)</title>
</head>
<body>
<body>
<c:set var="num" scope="session" value="${4*4}" />
<p>
删除前的值为:
<c:out value="${num}" default="null" />
</p>
<c:remove var="num" />
<p>
删除后的值为:
<c:out value="${num}" default="null" />
</p>
</body>
</html>
页面输出结果为: