天问

网站如何添加访问统计代码?

国内

国内一般使用 cnzz,很多年前使用过,不过后面被阿里收购后,系统大变样。索性就不再用了。

感兴趣的自己注册账号使用即可,很简单。

国外google analytics

提供给国外用户访问的,可以添加google analytics codes. 其实很简单,对于一些英文能力不强的开发者可以看下面步骤:

(1)到google analytics 后台申请id

https://analytics.google.com/analytics/web/

有了id之后,就到admin菜单找到 分析代码位置:

比如说:

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-141610064-1"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-141610064-1');
</script>

可以看到 这个js使用的是 async 异步加载方式,所以可以直接放到<Header>中就达到了统计分析的目的了。

博客地址:http://blog.yoqi.me/?p=16972
扫我捐助哦
喜欢 1

这篇文章还没有评论

发表评论