Google Analytics 事件 - 触发用户退出
我正在寻找一种使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 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.