Google Analytics:_setvar 为新的跟踪代码
我一直在使用旧版本的分析代码,并使用以下代码来跟踪不同类型的用户,
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx");
pageTracker._setVar('memberlevel-2'); pageTracker._trackPageview();
} catch(err) {}</script>
如何将其与新的异步代码一起使用?谷歌分析论坛已经死了,我没有得到任何回应:(
I have been using the older version of analytics code and used the following to track different types of users
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx");
pageTracker._setVar('memberlevel-2'); pageTracker._trackPageview();
} catch(err) {}</script>
How do I use this with the new asynchronous code? Google Analytics forums is dead and i got no response :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试阅读此内容以设置自定义变量:
http://code.google.com /apis/analytics/docs/tracking/gaTrackingCustomVariables.html
跟踪页面浏览量的示例代码:
Try reading this for setting custom variable:
http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html
Sample code for to track page view:
_setVar
仍然有效,但您应该使用_setCustomVar
来代替,因为它更强大。这是使用异步代码的旧代码的样子:
要使用 setCustomVar,您可以这样做:
_setVar
still works, but you should use_setCustomVar
instead, as its more powerful.Here's what your old code looks like using the async code:
To use setCustomVar instead, you could do this: