JS定时刷新页面
时间:2014-04-09 23:12:21
收藏:0
阅读:883
<script
language="JavaScript">
function
myrefresh()
{
window.location.reload();
}
setTimeout(‘myrefresh()‘,
100000); //指定1秒刷新一次
</script>
原文:http://www.cnblogs.com/rambo1293271398/p/3654742.html
评论(0)