[JS] 论坛在线挂机
论坛挂机,刷在线时间 的一种Js实现
原理:在页面底部嵌入当前页面的Iframe,刷新Iframe实现访问当前页面,达到在线效果
通用版
h_=document.createElement('iframe');
h_.id='h_';
h_.width=0;
h_.height=0;
h_.hidden='true';
h_.display='none';
document.body.appendChild(h_);
window.setInterval(function(){document.getElementById('h_').src='?'+Date()}, 6000)
优点:兼顾全部浏览器
缺点:请求拼接了多余参数,可能导致没有效果
Chrome限定版
h_=document.createElement('iframe');
h_.id='h_';
h_.hidden='true';
document.body.appendChild(h_);
window.setInterval(function(){document.getElementById('h_').src=window.location.href}, 6000)
PS:时间单位都是ms,样板为6s,请使用者自行更改刷新周期

浙公网安备 33010602011771号