Google Analytics事件跟踪代码问题

时间:2016-01-20 10:25:24

标签: javascript google-analytics

我在我的网站上使用了新的analytics.js。我已将以下事件跟踪代码添加到注册表单的回调函数中,以跟踪GA上的用户注册。我看到了综合浏览量,但没有看到行为中的事件。

$.post("http://example.com/user/signup",
    JSON.stringify({
        email: emailInput,
    }),
    function(data,status){
       ga('send', 'event', 'user', 'try', 'apply-now', emailInput, {});
       fbq('track', 'Lead');
    }
);

我甚至看到一个请求到GA,其后面是params,

ec:user
ea:try
el:apply-now

下面提到的跟踪代码的GA工作正常。 这是我的网站。http://www.maturify.com/commercial.html

1 个答案:

答案 0 :(得分:2)

我认为emailInput变量将包含一个电子邮件地址字符串,第四个参数是 ev EventValue,在Google Analytics中需要作为正整数值。