您可以将自定义变量传递到Google Analytics(分析)事件跟踪吗?

问题描述 投票:0回答:1

在Google Analytics(分析)中,您可以跟踪这样的事件:

$(document).on('click', '#home .post', function() {
    ga('send', 'event', 'Home', 'click', 'Posts', '4');
}); 

我想知道是否可以像这样传递一个变量,而不是'4':

$(document).on('click', '#home .post', function() {
    var index = $(this).index() + 1;
    var indexStr = '' + index;
    ga('send', 'event', 'Home', 'click', 'Posts', indexStr);
});

如果有,我也想知道是否有必要将其转换为字符串。

javascript jquery string google-analytics jquery-events
1个回答
1
投票

是,是的,您可以在Google Analytics(分析)中传递自定义变量。

© www.soinside.com 2019 - 2024. All rights reserved.