<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%
pageContext.setAttribute("basePath", request.getContextPath());
%>
<title>测试页面</title>
<script type="text/javascript" src="${basePath}/media/js/jquery1.6.3/jquery-1.6.3.js"></script>
<script type="text/javascript">
$(function() {
var i=1;
setInterval(function() {
var temp=i++;
$('#date1').html(temp);
}, 1000);//1s
});
</script>
</head>
<body >
<div id="date1"></div>
</body>
</html>