javascript间隔5秒刷新
来源:岁月联盟
时间:2012-03-14
<script language="JavaScript">
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',5000); //指定1秒刷新一次
</script>
摘自 baikaishui1989