无法在Google Analytics中显示要显示的事件

时间:2015-07-28 04:03:20

标签: google-analytics

我尝试在包含Amazon Associate链接的网页上实施Google Analytics的事件跟踪。我不是一个真正的程序员(主要是我知道HTML和CSS),但无论我多么努力地检查我的JavaScript,我都无法弄清楚为什么我的活动都没有在Google Analytics中注册(实际上,其中一个他们只注册一次,但从未再次工作过)。

我的Google Analytics(分析)属性使用Universal Analytics,我(仅在今天)升级了我的代码,现在是:

<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-11051086-1', 'auto');
  ga('send', 'pageview');

</script>

以下是我尝试为以下内容创建活动的链接示例:

<a onClick="ga('send','event','Amazon','Titlelink','swbook', 0.02)" href="https://rads.stackoverflow.com/amzn/click/com/0345541936" rel="nofollow noreferrer" style="text-decoration: none" target="_blank"><i>Dawn of the Jedi: Into the Void</i> by Tim Lebbon</a><img src="http://www.assoc-amazon.com/e/ir?t=yodsdatboolis-20&l=as2&o=1&a=0345541936" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />

我已经尝试过的事情:

  • 在脚本调用中添加/删除空格
  • 将最后一个参数设置为0
  • 使用onMouseDown而不是onClick
  • 将完全相同的脚本调用添加到更简单的元素中,而不包含所有Amazon.com内容。
  • 等,等等。

但仍然一无所获,除了分析注册事件的数十个神秘时期外。

非常感谢您提供的任何帮助!

0 个答案:

没有答案