当前位置: 代码迷 >> JavaScript >> html自动刷新代码解决方法
  详细解决方案

html自动刷新代码解决方法

热度:58   发布时间:2012-03-25 20:55:16.0
html自动刷新代码
整个页面载入完成以后自动刷新的代码

------解决方案--------------------
<body onload="window.location.reload()">

or

<body onload="setTimeout('window.location.reload()',6000)">
  相关解决方案