Google Analytics 事件 - 触发用户退出

发布于 2024-10-31 16:40:21 字数 390 浏览 0 评论 0原文

我正在寻找一种使用 Google Analytics _gaq.push模拟用户已离开页面的方法(以便 GA 停止计算平均时间)现场)。

这是我用来跟踪 Google Analytics 中的 AJAX 页面的一些代码(它计算页面视图):

_gaq.push(['_trackPageview', '/ajax/save']);

我正在寻找的是这样的东西:

_gaq.push(['_exitCurrentPage', 'http://example.com/']);

是否存在具有该功能的任何东西?

预先感谢,

哈维

I am looking for a way to simulate with Google Analytics _gaq.push that the user has left the page (so GA stops counting on Average time on site).

This is some code I use to track AJAX pages in Google Analytics (it counts a page view):

_gaq.push(['_trackPageview', '/ajax/save']);

What I am looking for is something such as:

_gaq.push(['_exitCurrentPage', 'http://example.com/']);

Does anything with that functionality exist?

Thanks in advance,

Xavi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光的暖冬 2024-11-07 16:40:21

我认为 GA 中没有为此提供任何特定功能,但您可以设置一个名为 dont_track 之类的 cookie,然后将其设置为模拟页面退出。然后,您可以在调用正常跟踪代码之前检查 cookie 是否存在,如果存在则停止执行。

I don't think that there's any specific functionality in GA for this but you could just set a cookie called something like dont_track then set it to simulate the page exit. You could then check for the cookie's existence before calling your normal tracking code and stop execution if it exists.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文