1

跟踪链接时,我需要将此代码放在最后吗?

return _gaLink(this,'#'); 

它究竟是做什么的?我对此的理解不是很清楚。

4

1 回答 1

1

您是否正在寻找跟踪传出/外部链接?没有名为 的 Google Analytics 函数_gaLink。您可以发布您的代码片段吗?

_link()用于 X-Domain 跟踪,请参阅文档

如果您只是想跟踪“出站链接”,即到其他站点的链接,那么使用这段代码(这不需要 jQuery):

///////////////////
// _trackOutbound
jQuery(document).ready(function($) {
    $('a[href^="http"]:not([href*="//' + location.host + '"])').live('click', function(e) {
        _gaq.push(['_trackEvent', 'outbound', 'click', this.href.match(/\/\/([^\/]+)/)[1]]);        
        _gaq.push(['t2._trackEvent', 'outbound', 'click', this.href.match(/\/\/([^\/]+)/)[1]]);
    });
});
于 2012-12-05T17:19:37.557 回答