<script language=javascript>
function reload(){
  window.location="你的jsp页面";
}
<body onload="setInterval('reload()',1),1000">
<body>

解决方案 »

  1.   

    忘了写</script>
    <script language=javascript>
    function reload(){
      window.location="你的jsp页面";
    }
    </script>
    <body onload="setInterval('reload()',1),1000">
    <body>
      

  2.   

    在html里面有一个设置该页面自动刷新的方法,每隔N秒它就自动刷新一次,其中N是自己设置的
    不过如果这样设置,要是页面过多的话,你有没有考虑过你的系统资源哦方法1:<meta http-equiv="refresh" content="1" url="aa.jsp">方法2:在本页面中实现另一个JSP文件的刷新
    <body onload="setInterval('document.links(\"youid\").click()', 1000)">
    <a href=aa.jsp target=yourTarget id=youid></a>