2009年的最后一天

Posted on 31st December 2009 by Nio in 创业, 工作忙碌, 日常生活

2009 年很快就要结束了,回想起这一年,觉得时间过得太快,也很平淡,和朋友合伙创办了思博天宇,做了很多项目,似乎每天都在忙碌,一直没有来得及停下脚步来看一看,也行我们也要偶尔停下来休息休息,这样才能走得更远。不管怎么说,翻过今天,明天必定更美好,感谢我的同事们,祝大家新年快乐 :)

Google Analytics 的异步操作

Posted on 3rd December 2009 by Nio in 程序人生 - Tags:

目前很多网站都使用了 Google Analytics 来跟踪各个页面的访问情况,但经常会出现页面过慢,JS 执行错误等问题,导致统计的结果不准确。现在 Google 提供了一个新的功能─异步跟踪

  • Faster tracking code load times for your web pages due to improved browser execution
  • Enhanced data collection and accuracy
  • Elimination of tracking errors from dependencies when the JavaScript hasn't fully loaded

JS 代码片段:


<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script');
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();
</script>

更多信息…