* Google Analytics Web Tracking [#oe5c90ac]

** 基本トラッキング [#n946fa14]
*** Traditionalスニペット [#ndd9ec83]
 <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
 <script type="text/javascript">
  var pageTracker = _gat._getTracker('UA-123456-1');
  pageTracker._trackPageview();
 </script>
*** 非同期スニペット [#ode5e36f]
 <script type="text/javascript">
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-123456-1']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
 </script>

 

** 参考 [#xb1ce3d6]
https://developers.google.com/analytics/devguides/collection/gajs/?hl=ja
- https://developers.google.com/analytics/devguides/collection/gajs/?hl=ja
- リファレンス https://developers.google.com/analytics/devguides/collection/gajs/methods/?hl=ja

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS