我正在尝试跟踪客户端的某些链接组的点击次数。我经历过Google guide for event tracking,但仍然无法理解。通过搜索其他问题,我已经读过,有时只需要一段时间就可以开始记录事件并显示在GA网站上。所有其他跟踪工作正常(网页浏览量,流量来源等)
特别是链接是在任何给定页面上可见的状态链接。
头脑中:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxxx-1']);
_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>
<script type="text/javascript">
function recordOutboundLink(link, category, action) {
_gat._getTrackerByName()._trackEvent(category, action);
setTimeout('document.location = "' + link.href + '"', 100);
}
</script>
链接示例
<a href="http://www.example.com/states/Alabama/" title="Alabama" rel="nofollow" onClick="recordOutboundLink(this, 'Outbound Links', 'Alabama');return false;">Alabama</a>
感谢您的帮助!