|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
網頁只刷新一次
我想使當前頁面只刷新一次。(不是每隔多少時間再刷新)。要怎麼辦? |
再問,如何能使網頁只刷新一次 |
[html]
<script>
function refreshOnce()
{
if(window.name!='refreshed')
{
location.reload();
window.name='refreshed';
}
}
</script>
<body onload="alert('load');setTimeout('refreshOnce()',1000)"></body>
[/html] |
|