在新的 Google Analytics (analytics.js) 设置中未跟踪事件 [英] Events not being tracked in new Google Analytics (analytics.js) setup

查看:24
本文介绍了在新的 Google Analytics (analytics.js) 设置中未跟踪事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个网站,我正在使用新的 Universal Analytics (analytics.js) 进行跟踪.一切都使用以下代码段进行设置和工作(综合浏览量、推荐等):

I have a website that I am using the new Universal Analytics (analytics.js) to track. Everything is setup and working (pageviews, referrals, etc.) using the following code snippet:

<script>
  (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-39570713-1', 'site.com');
  ga('send', 'pageview');

</script>

位于 </head> 标签之前.

我正在使用 JQuery 来触发一个事件.我用一条警告消息测试了 JQuery,它被调用了,所以这不是问题.这是单击按钮时触发的代码段:

I am using JQuery to fire off an event. I tested the JQuery with an alert message and it is getting called, so that isn't the problem. Here is the snippet that fires when a button is clicked:

$('#submitButton').on('click', function() {
      ga('send', 'event', 'button', 'click', 'contact form');
    });

Analytics 的事件"部分未显示任何内容.我一直点击按钮,即使是在不同的计算机上,只是为了确保它不排除我的 IP 地址.因为 Google 提供的分析文档没有提供很多解释我在这里不知所措.

Nothing is appearing in the Events section of Analytics. I keep clicking the button, even from different computers just to make sure it isn't excluding my IP address. Because the Analytics doc that Google provides does not provide a whole lot of explanation I'm at a loss here.

推荐答案

我解决问题的唯一方法是回滚到以前版本的 Analytics(非测试版):

The only way I solved the problem was rolling back to the previous version of Analytics (non-beta):

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-39570713-2']);
  _gaq.push(['_setDomainName', 'optimino.com']);
  _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>

这篇关于在新的 Google Analytics (analytics.js) 设置中未跟踪事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆