gpt4 book ai didi

jquery - Google Analytics(分析)jQuery事件跟踪不起作用

转载 作者:行者123 更新时间:2023-12-03 17:02:39 25 4
gpt4 key购买 nike

通过使用this website上提供的示例,我使用JQuery在网站上设置了一些事件跟踪代码。

这是我正在使用的jquery代码的核心部分:

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;
}


但是我不希望在Google Analytics(分析)中显示“ Click-”。
但是删除此代码后,代码变为:

_gaq.push(['_trackEvent', 'Download', extension, filePath]);


Google Analytics(分析)中不再跟踪任何事件。

最佳答案

花了一些时间在这个问题上之后,我发现了扩展变量:

 var extension = (/[.]/.exec(href)) ? /[^.]+$/.exec(href) : undefined;


不是一个字符串(感谢firebug中的console.log(extension);)。这可以解释为Google Anyltics没有显示任何事件。

所以我想出的解决方案是将代码更改为以下内容:

_gaq.push(['_trackEvent', 'Download', '' + extension, filePath]);


此后,跟踪将正常工作。

关于jquery - Google Analytics(分析)jQuery事件跟踪不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22545923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com