[求助]怎么样修改HTML代码才能实现我的愿望啊
这个是帮朋友打气投票用的,怎么样才能改成在一个固定页面每隔5分钟刷新一次啊,希望大家能帮帮忙,先谢谢了
<html>
<head>
<title>支持河南选手-祝愿取得好成绩</title>
</head>
<body>
<FORM name="fm0" onSubmit="0"><FONT COLOR="#6060FF">剩余时间:
<INPUT type="text" name="time_spent" size=7 onFocus="this.blur()">
</FORM>
<script language="JAVASCRIPT">
<!-- Begin
var b = 300;
function show_secs ()
{
b -= 1;
document.fm0.time_spent.value = b;
if (b>0)
window.setTimeout('show_secs()',1000);
return;
}
window.setTimeout('show_secs()',1);
End -->
</script>
<meta http-equiv="refresh" content="6;URL=http://pthjsp.china.com/vote.do?mname=vote&userId=278">
</body>
</html>