到目前为止,这是我的分析代码:
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'XXXX', {cookieDomain: 'none', legacyCookieDomain: 'none'});ga('send', 'pageview');
我正在尝试录制这样的事件:
<a style="
color: #00b258; font-size: 15px;" onclick="ga('_trackEvent', 'Submit an inquiry', 'Click Submit Inquiry', 'Opened Inquiry form on ' + document.url);return true;" href="http://test.com">Submit An Inquiry</a>
但是当我进入firebug网络面板时,没有发送请求。我错过了什么?我的语法错了吗?
答案 0 :(得分:2)
我认为你将跟踪代码混淆了一下。看起来应该更像这样。第一项应为Send
而不是_ trackevent
。
<a href='#' onclick="ga('send', 'event', 'button', 'click', 'test', 4);"> Test Event</a>
尝试修复你的:我不确定它是否会让你添加document.url,但如果有的话请告诉我:)。
<a style="color: #00b258; font-size: 15px;" onclick="ga('send', 'Submit an inquiry', 'Click Submit Inquiry', 'Opened Inquiry form on ' + document.url);" href="http://test.com">Submit An Inquiry</a>