在以下代码中,我试图: -
什么不起作用: -
我尝试过: -
_gaq_.push
的信息是否正确链接到正确的帐户。我在相关域内的隔离文件中试过但仍然没有运气。
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_setDomainName', 'mydomain.co.uk']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setSiteSpeedSampleRate', 100]); // this is a new line, allowing us to see how fast all pages load
_gaq.push(['_trackPageview']); // we’ve moved this line down, as ‘setdomain’ (etc) should appear before it
(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);
})();
$(document).ready(function () {
var querystring = (function (a) {
if (a == "") return {};
var b = {};
for (var i = 0; i < a.length; ++i) {
var p = a[i].split('=');
if (p.length != 2) continue;
b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));
}
return b;
})(window.location.search.substr(1).split('&'));
if (querystring["utm_expid"] != null) {
$('a').click(function () {
if ($(this).attr("href") != 'undefined' && $(this).attr("href") != null) {
if ($(this).attr("href").toLowerCase().indexOf("keyword") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword2") >= 0) {
_gaq.push(['_trackEvent', 'eventCategories', 'eventAction', 'eventLabel']);
} else if (($(this).attr("href").toLowerCase().indexOf("keyword") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword2") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword3") >= 0) || ($(this).attr("href").toLowerCase().indexOf("keyword4") >= 0)) {
_gaq.push(['_trackEvent', 'eventCategories', 'eventAction', 'eventLabel']);
}
}
});
}
});
答案 0 :(得分:3)
Google Analytics _trackEvent
(以及_trackPageview
等)通过从分析服务器发出跟踪像素请求来工作。如果点击导致在跟踪请求完成之前将新页面加载到同一窗口,则最终可能会丢失数据,或者只跟踪某些数据。
以下代码在跟踪链接之前会稍微延迟:
var delayLink = function(e, url) {
e.preventDefault();
setTimeout(function(){location.href = url}, 150);
};
if (querystring["utm_expid"] != null) {
$('a').click(function (e) {
if ($(this).attr("href") != 'undefined' && $(this).attr("href") != null) {
if ($(this).attr("href").toLowerCase().indexOf("keyword") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword2") >= 0) {
_gaq.push(['_trackEvent', 'eventCategories', 'eventAction', 'eventLabel']);
if (this.target != '_blank') delayLink(e, this.href);
} else if (($(this).attr("href").toLowerCase().indexOf("keyword") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword2") >= 0 && $(this).attr("href").toLowerCase().indexOf("keyword3") >= 0) || ($(this).attr("href").toLowerCase().indexOf("keyword4") >= 0)) {
_gaq.push(['_trackEvent', 'eventCategories', 'eventAction', 'eventLabel']);
if (this.target != '_blank') delayLink(e, this.href);
}
}
});
}