<c:url>标签

JSTL <c:url> 标签类似于 response.encodeURL( ) 方法,用于将 URL 格式化为一个字符串,然后存储到变量中。

<c:url> 标签可以自动执行 URL 重写操作,并提供合适的 URL 编码。

语法

JSP <c:url> 标签语法如下:
<c:url  value="url" [var="varname"] [context="context"] [scope="page|request|session|application"] />
其中:
  • value:指要生成的 URL;
  • var:可选项,代表 URL 的变量名,存储格式化后的 URL;
  • context:可选项,本地网络应用程序的名称;
  • scope:可选项,URL 的作用域,默认为 page。

示例

下面为 <c:url> 标签的简单实例。
<%@ 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.biancheng.net)</title>
</head>
<body>
<body>
    <c:url value="/index.jsp" />
</body>
</html>

页面输出结果为:

/jspDemo/index.jsp