我正在尝试为Google Analytics中的文件下载设置事件跟踪。经过一些研究后,我将以下代码添加到需要跟踪的链接中:
<a onclick="_gaq.push(['_trackEvent','Download','PDF',this.href]);" href="http://www.link.com/file.pdf" target="_blank">Link Text</a>
以下代码位于Google Analytics的页面上:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9999999-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
这已经活跃了超过48小时,但我没有参加GA的活动。它说“你的13次访问发送了事件”但没有显示其他信息。有什么想法吗?
答案 0 :(得分:3)
您似乎正在为Google Analytics混合使用两种不同的API。
您发布的第一个代码段用于ASYNC跟踪,但您已在第二个代码段中使用了(现在是传统的)传统跟踪。
要使其正常运行,请将页面跟踪代码更改为如下所示,其他代码看起来没问题。
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_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>
此处有更多详情: https://developers.google.com/analytics/devguides/collection/gajs/asyncTracking
答案 1 :(得分:1)
如果您要迁移到异步跟踪,以下链接可以指导您 - https://developers.google.com/analytics/devguides/collection/gajs/asyncMigrationExamples