html自动刷新页面有两种方式
1.在<head>标签中加入
<meta http-equiv="refresh" content="10"> //content代表多少秒刷新一次html页面
2.js方法
<script language="JavaScript">
function myrefresh(){
window.location.reload();
}
setTimeout('myrefresh()',1000); //单位为毫秒
</script>