我正在使用ga.js.我的代码正在录制一些内部链接,但在我测试过的页面上显示的内部链接显示的事件总数为1,应该是50.我还会查看事件中的实时报告。我的所有外部人员都会马上出现,但我的内部人员却没有。除了内部链接,我无法弄清楚为什么一切都有效。我的代码如下,
<script type="text/javascript">
if (typeof jQuery != 'undefined') {
jQuery(document).ready(function ($) {
var pdffiletype = /\.(pdf)$/i;
var filetypes = /\.(zip|exe|doc*|xls*|ppt*|mp3)$/i;
var baseHref = '';
if (jQuery('base').attr('href') != undefined)
baseHref = jQuery('base').attr('href');
jQuery('a').each(function () {
var href = jQuery(this).attr('href');
if (href && (href.match(/^https?\:/i)) && (!href.match(document.domain))) {
jQuery(this).click(function () {
var extLink = href.replace(/^https?\:\/\//i, '');
_gaq.push(['_trackEvent', 'External', 'Click', extLink]);
if (jQuery(this).attr('target') != undefined && jQuery(this).attr('target').toLowerCase() != '_blank') {
setTimeout(function () { location.href = href; }, 200);
return false;
}
});
}
else if (href && href.match(/^javascript\:/i)) {
//do not track
return true;
}
else if (href && href.match(/^mailto\:/i)) {
jQuery(this).click(function () {
var mailLink = href.replace(/^mailto\:/i, '');
_gaq.push(['_trackEvent', 'Email', 'Click', mailLink]);
});
}
else if (href && href.match(pdffiletype)) {
jQuery(this).click(function () {
var extension = (/[.]/.exec(href)) ? /[^.]+$/.exec(href) : undefined;
var filePath = href;
_gaq.push(['_trackEvent', 'PDF', 'Click', $(this).html(), 0]);
if (jQuery(this).attr('target') != undefined && jQuery(this).attr('target').toLowerCase() != '_blank') {
setTimeout(function () { location.href = baseHref + href; }, 200);
return false;
}
});
}
else if (href && href.match(filetypes)) {
jQuery(this).click(function () {
var extension = (/[.]/.exec(href)) ? /[^.]+$/.exec(href) : undefined;
var filePath = href;
_gaq.push(['_trackEvent', 'Download', 'Click-' + extension, filePath]);
if (jQuery(this).attr('target') != undefined && jQuery(this).attr('target').toLowerCase() != '_blank') {
setTimeout(function () { location.href = baseHref + href; }, 200);
return false;
}
});
}
else if (href) {
//assume internal link
_gaq.push(['_trackEvent', 'Internal', 'Click', href]);
}
});
});
}
</script>
答案 0 :(得分:0)
只需更改此ligne:_gaq.push(['_ trackEvent','Download','Click-'+ extension,filePath]);至 ga('发送','事件','下载','点击',filePath); 它再次为我工作