新しいユニバーサル分析でイベントを追跡したいのですが、これがうまくいかない理由がわかりません。bodyタグの開始直後に分析コードを配置しました。このコードは次のようになります。
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3843452-1', {'name': 'first'});
ga('first.send', 'pageview');
ちなみに、他のすべての標準的な分析は正常に機能します。
ボタンにこのコードを使用しました:
<button id="ga-event-send" onclick="ga('send', 'event', 'button', 'click', 'test event', 1);">Send ga event</button>
私はクロム開発者ツールでネットワークを見てきましたが、何でも送信されました。私は自分が何を間違っていたのか分かりません。
助けてくれてありがとう。
よろしく。