gpt4 book ai didi

google-analytics - 如何在 Google Analytics 中跟踪 "Open New Tab"流量

转载 作者:行者123 更新时间:2023-12-03 15:25:45 24 4
gpt4 key购买 nike

我有一个推荐网站,它使用 url 转到我的网站,该网站实现了谷歌分析。当用户单击链接时,推荐站点在同一窗口的新选项卡中打开我的网站。

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

我是谷歌分析的新手,请给我建议如何跟踪“打开新标签”方法的流量。

最佳答案

您可以使用 JavaScript 跟踪尽可能远的点击。这意味着标准单击、中键单击(许多人用于在新选项卡中打开)和右键单击(这可能意味着使用上下文菜单打开新选项卡)。

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

这是一个反射(reflect)这一点的 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.

关于google-analytics - 如何在 Google Analytics 中跟踪 "Open New Tab"流量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14253951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com