属性
url:待导入资源的URL,可以是相对路和绝对路径,并且可以导入其他主机资源context:当使用相对路径访问外部context资源时,context指定了这个资源的名字。
charEncoding:所引入的数据的字符编码集
var:存储引入的文本变量的值
scope:var属性的作用域
代码示例
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>c:import 标签实例</title>
</head>
<body>
<c:import var="data" url="http://www.baidu.com"/>
<c:out value="${data}"/>
</body>
</html>