<c:param>
标签允许使用URL指定适当的URL请求参数,并且还需要必要的URL编码。
在<c:param>
标签中,name
属性指示参数名称,value
属性指示参数值 -
属性
<c:param>
标签具有以下属性 -
属性 | 描述 | 必需 | 默认 |
---|---|---|---|
name |
要在URL中设置的请求参数的名称 | 是 | None |
value |
要在URL中设置的请求参数的值 | 否 | None |
文件:c_param.jsp -
<%@ 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>c:param示例</title>
</head>
<body>
<div style="margin: auto; width: 80%">
<c:url value="index.jsp" var="myURL">
<c:param name="myId" value="1688" />
<c:param name="reportType" value="summary" />
</c:url>
<c:out value="${myURL}"/>
<c:import url="${myURL}" />
</div>
</body>
</html>
执行上面示例代码,得到以下输出结果 -