页面刷新:有三种方法:1,在html中设置:<title>xxxxx</title>之後加入下面这一行即可! 定时刷新:<META HTTP-EQUIV="Refresh" content="10"> 10代表刷新间隔,单位为秒
2.jsp<% response.setHeader("refresh","1"); %> 每一秒刷新一次
3.使用javascript:<script language="javascript">setTimeout("self.location.reload();",1000);<script>一秒一次