我在我的网站上使用谷歌标记管理器事件
在萤火虫中,我可以看到我的事件正在开火!
GET /__utm.gif?utmwv=5.4.9&utms=16&utmn=705393378&utmhn=localhost&utmt=event&utme=5(Brand%20menu*click%20on%20brand*HID%20do%20Brasil)&etc
Host: www.google-analytics.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Referer: http://localhost/en/local/
但我在谷歌分析面板中看不到任何实时事件
是否可以通过localhost使用gtm?
这是我对gtm事件的js代码的摘录:
jQuery('.brand-list-tooltip li a').click(function () {
var targetName = jQuery(this).text();
var brandName = jQuery(this).parents('.show-tip').find('a').first().text();
_gaq.push(['_trackEvent', 'Brand menu', 'click on brand country', brandName]);
_gaq.push(['_trackEvent', 'Brand menu', 'click on brand country', targetName]);
});