Google Analytics自定义事件未正确跟踪

时间:2012-02-15 18:41:26

标签: google-analytics

以下是GA输出代码:

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA_CODE']);
  _gaq.push(['_setDomainName', 'SUBDOMAIN']);
  _gaq.push(['_trackPageview']);
  _gaq.push(['_trackEvent', 'Priority', 'Created (day)', 'Label info', '']);



  (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>

trackEvent行似乎是正确的......但由于某种原因没有跟踪。是因为我离开了值字段nil?

2 个答案:

答案 0 :(得分:6)

对于_trackEventvalue参数应为整数。由于它是一个可选参数,您可以将其删除:

_gaq.push(['_trackEvent', 'Priority', 'Created (day)', 'Label info']);

具有非整数值将阻止跟踪事件。

答案 1 :(得分:1)

我认为_trackEvent在通过GA跟踪代码段调用时无法正常工作,至少不是为了这种用法而做的。如果您想在页面加载后执行活动,请尝试从onLoad标记的body事件中调用它。

其次,将可选值参数传递为''会使其无法解决,看起来它可能会产生错误,因此,因为它是可选的,所以根本不通过它。

GA报告有​​延迟,数据处理大约需要24小时(您可以在新旧版本之间切换,有时一个显示数据的速度比另一个更快)。