简书,思否的文章的访问量, 刷新就可以+1, 那为何不写个简单的脚本来+1呢.

谷歌无痕模式打开任意一个网站(如百度), 打开控制台, 输入下面的脚本:

window.__timer;
window.shua = function() {
    document.querySelector('#testIframe') && document.querySelector('#testIframe').remove();
    let iframe = document.createElement('iframe');
    iframe.setAttribute('src', '${你的博客地址}');
    iframe.setAttribute('id', 'testIframe');
    document.querySelector('body').appendChild(iframe);
    window.__timer && clearTimeout(window.__timer);
    window.__timer = setTimeout(window.shua, ${刷新间隔,单位毫秒});
}
window.shua();

刷新间隔建议设置为5-10s, 太快浏览器扛不住
比如刷新当前博客:

window.__timer;
window.shua = function() {
    document.querySelector('#testIframe') && document.querySelector('#testIframe').remove();
    let iframe = document.createElement('iframe');
    iframe.setAttribute('src', 'https://segmentfault.com/a/1190000037615832');
    iframe.setAttribute('id', 'testIframe');
    document.querySelector('body').appendChild(iframe);
    window.__timer && clearTimeout(window.__timer);
    window.__timer = setTimeout(window.shua, 8 * 1000);
}
window.shua();
这是一个简单的脚本, 如果你要高效, 建议改为api刷.

你看我的博客的访问量, 就知道我自己是没有使用的.


joyerli
158 声望5 粉丝

前端搬砖一枚,会分享一些对技术的个人理解和思考,还会分享一些自己解决实际碰到的业务需而设计的奇葩技术方案。