页面退出时的 Google Analytics 事件跟踪

发布于 2024-12-11 05:24:26 字数 147 浏览 0 评论 0原文

我有一个 javscript 代码,用于记录访问者与网站的交互(例如计算最大滚动位置、鼠标移动像素等)。但是,只有当用户停止与页面交互时,这些统计信息才有效。 (他离开、单击链接、关闭浏览器等)

发生这种情况时是否可以执行 _gaq_push?如果是这样,怎么办?

I have a javscript code wich record visitors interaction with the website (like calculating max scroll position, mouse movement in pixels, etc). However, these statistics are valid, only if the user stops interacting with the page. (he leaves, clicks a link, closes the browser, etc)

Is it possible to do a _gaq_push when this happens? If so, how?

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

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

发布评论

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

评论(2

一刻暧昧 2024-12-18 05:24:26

这应该有效。

<script>
    window.onbeforeunload = storeData;
    function storeData(){
        _gaq.push(['_trackEvent', 'Visitor Info', 'Scrolling', 'Up', 200, true]);
    }
</script>

然而,值得注意的是,通过将事件推送到 Google Analytics,它会影响跳出率计算,在您的情况下,这会导致用户看起来从未跳出。因此,您必须包含最后一个参数,并进行设置为true

This should work.

<script>
    window.onbeforeunload = storeData;
    function storeData(){
        _gaq.push(['_trackEvent', 'Visitor Info', 'Scrolling', 'Up', 200, true]);
    }
</script>

However, it's worth noting by pushing an event to Google Analytics, it affects bounce rate calculation, which in your case would cause it to appear that users never bounced. So you must include that last parameter, and set it to true.

驱逐舰岛风号 2024-12-18 05:24:26

您是否尝试过将推送调用添加到 window.onunload 事件?

Have you tried adding your push calls to the window.onunload event?

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