jquery 深度链接 - 它如何影响分析?
我正在考虑使用 http://www.asual.com/jquery/address/ ,但我想知道它如何影响谷歌分析。谷歌分析是页面底部的一段代码。我想深层链接仍然看起来像是初始页面上的活动,而不是新页面上的活动。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我所知,谷歌分析会像导航到新页面一样。
只需打开例如 http://www.asual.com/jquery/address/samples/ tabs/ 并检查 FF 发出的请求(例如使用 实时 HTTP 标头),您将看到谷歌分析会为您切换到的每个选项卡触发请求。
From what I can see it will look to google analytics like navigating to a new page.
Just open e.g. http://www.asual.com/jquery/address/samples/tabs/ and check the requests FF makes (e.g. with Live HTTP Headers) and you will see that the google analytics fires a request for every tab you switch to.
在当前版本 1.3 中,jquery 地址插件尝试使用异步 ga 跟踪自动进行 ga 跟踪(请参阅http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html)。插件的 api 文档中也提到了这一点 http://www.asual.com /jquery/address/docs/#api-reference (查找 $.address.tracker)
实际上这个新行为(我之前使用的是 address' 1.0 版本)破坏了我在 ajax 站点上的自定义跟踪代码 - 因为它不可配置,我不得不降级到1.0。
in it's current version 1.3 the jquery address plugin tries to do the ga tracking automatically, using the asynchronous ga tracking (see http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html). this is also mentioned in plugin's api docs at http://www.asual.com/jquery/address/docs/#api-reference (look for $.address.tracker)
actually this new behaviour (i was using address' version 1.0 before) broke my custom tracking code on an ajax site - as it isn't configurable, i had to downgrade to 1.0.
只要页面和分析代码正在加载,它仍然会被视为页面上的点击。我认为使用这个插件不会有任何负面影响。
As long as the page, and the analytics code is being loaded, it will still count as a hit on the page. I don't think there would be any negative impacts of using this plug in.