Google Analytics:不会跟踪事件

时间:2014-02-11 16:44:02

标签: javascript google-analytics

我使用Google分析来跟踪点击按钮时的事件。请在下面找到我负责的代码。

<script type="text/javascript">
            var _gaq = _gaq || [];
            _gaq.push(['_setAccount', '@accountNumber']);
            _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> 
<button id="button-submit" onclick="_gaq.push(['_trackEvent', 'CoreSiteCulture UK Submit', 'US Home', 'example.com']);">Save</button>

事件已发送,但它们不会出现在Google Analytics事件中。

有谁知道可能出错了什么?

编辑: 我正在使用GA调试器进行调试,它表示已发送跟踪信标。

2 个答案:

答案 0 :(得分:0)

也许这个问题不在生产中。 请检查: http://oapp.com.ar/stack/index.html

问题在于无法在本地环境中测试分析

答案 1 :(得分:0)

对于本地测试,您需要添加此

 ga('create', 'UA-XXXX-Y', {
 'cookieDomain': 'none'
 });

以下是link for reference.