1

可能重复:
谷歌分析 - 一页上有多个跟踪器(cookie 冲突)

我在互联网上搜索过这个问题,但找不到我正在寻找的答案。

我开发了一个博客,具有一些特殊功能。每个用户在注册时都会获得自己的子域。

一切都是免费的,但有广告。我目前使用谷歌分析来跟踪访问者总数和浏览量。

我开发了一个小计数器,以便每个用户可以查看他们有多少访问者和浏览量,但是对于更详细的信息,他们需要使用自己的“谷歌分析”,或者他们想要使用的任何东西。

所以。我现在使用的代码:

<script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-xxxxxx1-1']);
        _gaq.push(['_setDomainName', 'sub.domain.com']);
        _gaq.push(['_trackPageview']);

        (function () {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        })();
    </script>

我不知道每个用户将使用哪种类型的分析服务,我让他们在 HEAD 中插入自己的代码。那么,如果他们使用谷歌分析,我们在谷歌分析的两个帐户会获得正确数量的访问者吗?然后代码将是:

<script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-xxxxxx1-1']);
        _gaq.push(['_setDomainName', 'sub.domain.com']);
        _gaq.push(['_trackPageview']);

        (function () {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        })();
    </script>
<script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-xxxxxx2-1']);
        _gaq.push(['_setDomainName', 'sub.domain.com']);
        _gaq.push(['_trackPageview']);

        (function () {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        })();
    </script>

还是我必须这样做:

_gaq.push(
    ['_setAccount', 'UA-XXXXXXXX-1'],
    ['_trackPageview'],
    ['b._setAccount', 'UA-XXXXXXXX-2'],
    ['b._trackPageview'] 
);

两个跟踪器都在同一个 . ??

谢谢!

4

1 回答 1

2

这是一个例子,它有效。我的代码相同。

_gaq.push(
  ['_setAccount', 'UA-XXXXX-1'],
  ['_trackPageview'],
  ['b._setAccount', 'UA-XXXXX-2'],
  ['b._trackPageview']
);
于 2012-12-04T23:25:52.607 回答