<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script type="text/javascript">
var min = <!--#t-->;
var ctl_id = "show";
onload = function() {
Refresh();
setInterval("Refresh();", 1);
}
function Refresh() {
document.getElementById(ctl_id).innerHTML = parseInt(min );
}
</script>
<body>
<div id="show"></div>
</body>
</html>
怎么才能每秒刷新<!--#t-->是个ssi的注解命令
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
<meta http-equiv="refresh" content="20">,其中20指每隔20秒刷新一次页面.
原子的web serve是1s刷新一次原因可以看源代码:
<meta http-equiv="refresh" content="1"> 所以是1s一次,根据你的需要改这里,而且浏览器也可设置刷新时间,可以上百度搜。
一周热门 更多>