有点困惑...我试图跟踪被单击的mailto链接,但始终显示“pageTracker未定义”。我的最终正文标签()之前有以下代码

<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-000000']); // This is my account number, I have added the zeros in this editor
  _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>

然后我在我的mailto链接中使用它
<a href="mailto:[email protected]" onClick="javascript:pageTracker._trackPageview('/mailto/hello');">[email protected]</a>

我不明白为什么它不起作用?任何帮助,将不胜感激

最佳答案

新的异步Google Analytics(分析)代码(您正在使用)的工作方式与非异步代码略有不同。每当您想在pageTracker上调用方法时,只需将“消息”插入“_gaq”队列即可。

<a href="mailto:[email protected]" onClick="_gaq.push(['_trackPageview', '/mailto/hello'])">[email protected]</a>

尽管跟踪mailto链接可能在以下情况下效果更好:
<a href="mailto:[email protected]" onClick="_gaq.push(['_trackEvent', 'mailto', 'home'])">[email protected]</a>

有关更多信息,请查看Async Tracking Users Guide

08-25 11:46