如何在Google Analytics中跟踪“打开新标签”流量

时间:2013-01-10 08:53:29

标签: google-analytics

我有一个推介网站,它使用网址访问我的网站,该网站已实施Google Analytics。当用户单击链接时,引荐网站会在同一窗口的新选项卡中打开我的网站。

我想为每个推介网站创建一个配置文件,以便每个配置文件都有自己的用户活动和交易转换报告。

我是google analytic的新手,请告诉我如何跟踪“打开新标签”方法的流量。

1 个答案:

答案 0 :(得分:3)

您可以使用JavaScript跟踪点击。这意味着标准点击,中间点击(许多人用来在新标签页中打开)和右键单击(这可能意味着使用上下文菜单打开新标签页)。

虽然我们无法使用中间和右键单击作为可靠的转化数据(嗯,你可以,但你绝对不是正确的),我们可以使用这些上下文线索暗示用户意图。 Google Analytics自定义维度确实可以帮助解决这种情况,因为我们可以将这些事件分配为" Intents"。现在,当您查看分析报告时,可以将意图与可能的新选项卡相关联。

这是一个反映这一点的jQuery代码段:

jQuery('a.some-link').on('mousedown tap touch', function(e){
    eventIntent = ( e.which >= 2 )? 'Intent' : 'Explicit'; //If the mouse button is greater or equal to 2, then set the intent (otherwise, it is an explicit click).
    ga('set', 'dimension3', eventIntent); //Change the dimension index to match yours!
    ga('send', 'event', 'Category', 'Action', 'Label', 'Value'); //Send an event so the dimension is tracked!
});

从那里,您可以使用标准报告,或创建自定义报告以及自定义细分,以提高您的见解。

有关详细信息,请I wrote a post about this subject and other events that you can associate with intents: here.