在GA事件跟踪中使用自定义变量

时间:2014-10-09 10:18:26

标签: javascript jquery google-analytics event-tracking

我正在尝试将自定义变量放入动态模板系统中的某些事件跟踪中。它使用来自URL的信息作为变量。

附加此脚本后,没有任何内容可用于分析。任何人都可以看到它有什么问题吗?

jQuery(function iCatGaFunction() {
    jQuery('#catbanner').click(function () {
        var url = jQuery(location).attr('href'); // get the current url
        var iCat = url.substring(url.lastIndexOf('/') + 1); // Last index of the url icat reference 
        _gaq.push(['_setCustomVar', 1, 'iCatBanner', iCat]); // GA snippet
    });
});

jQuery('#catbanner').find('a:first').attr('onClick', 'iCatGaFunction()'); // wrap first a href around <img> and call function onclick

我按照这里的说明 - 可能与范围有关? https://developers.google.com/analytics/devguides/collection/gajs/methods/gaJSApiBasicConfiguration#_gat.GA_Tracker_._setCustomVar

0 个答案:

没有答案