使用方法
- 文章访问计数(将下面的代码插入需要显示的地方)
<span id="readcount"></span>次阅读
- 全站访问量 (将下面代码插入footer)
<p>本站总访问量:<a id="allcount"></a></p>
- 将下面代码加入footer
<script>
fetch('https://counts.42cloud.cn/api/counts.html')
.then(response => response.json())
.then(data => {
if (document.getElementById("readcount")) {
document.getElementById("readcount").innerHTML=data.Count;
}
if (document.getElementById("allcount")){
document.getElementById("allcount").innerHTML=data.Allcount;
}
})
.catch(err => console.error(err))
</script>
- 然后就大功告成了