gpt4 book ai didi

javascript - 在 Google Analytics 中跟踪所有出站链接

转载 作者:可可西里 更新时间:2023-11-01 01:17:40 25 4
gpt4 key购买 nike

几个月来我一直在使用脚本来跟踪出站链接。 脚本有效,但在 Google Analytics 生成的报告中,许多 URL 的末尾都有尾随“:80”(默认端口号)。继续阅读以了解更多详情。

值得一提的是,跟踪这些出站链接的网站拥有大量出站流量(将您的幻想乘以 ∞)。

脚本的目的

它跟踪所有出站链接并在 Google Analytics 中将它们标记为“出站链接”。

该脚本有大量注释,并有几个 console.log() 实例来帮助调试(这些被注释掉了)。

“出站链接”在 GA 上显示正常,位于:

内容 > 事件 > 热门事件 >“出站链接”[点击它] > [报告显示所有点击的网址]

问题

在“出站链接”报告下,我得到了所有被点击的链接,我在报告的所有链接中至少有 2/3(可能更多)的末尾得到“:80”。 GA 对待 http://example.comhttp://example.com:80作为不同的链接,在报告中将它们分开。 这当然不是我们想要的。

值得一提:

以“:80”结尾的链接总是比不带“:80”的链接有更多的点击率,点击率高出 40% 到 60%。

想要的解决方案

  • 将以“:80”结尾的链接与不带它的链接合并,或者
  • 尽可能避免在链接中附加“:80”。
  • 奖励:理解为什么我们得到的链接完全以“:80”结尾。

脚本

// Outbound Link Tracking with Google Analytics
// Requires jQuery 1.7 or higher (use .live if using a lower version)
$(function() {
$("a").on('click',function(e){
var url = $(this).attr("href");
// Console logs shows the domain name of the link being clicked and the current window
// console.log('e.currentTarget.host: ' + e.currentTarget.host);
// console.log('window.location.host: ' + window.location.host);
// If the domains names are different, it assumes it is an external link
// Be careful with this if you use subdomains
if (e.currentTarget.host != window.location.host) {
// console.log('external link click');
// Outbound link! Fires the Google tracker code.
_gat._getTrackerByName()._trackEvent("Outbound Links", e.currentTarget.host, url, 0);
// Checks to see if the ctrl or command key is held down
// which could indicate the link is being opened in a new tab
if (e.metaKey || e.ctrlKey) {
// console.log('ctrl or meta key pressed');
var newtab = true;
}
// If it is not a new tab, we need to delay the loading
// of the new link for a just a second in order to give the
// Google track event time to fully fire
if (!newtab) {
// console.log('default prevented');
e.preventDefault();
// console.log('loading link after brief timeout');
setTimeout('document.location = "' + url + '"', 100);
}
}
/*
else {
console.log('internal link click');
}
*/
});
});

最佳答案

Fresheyeball 的答案是正确的,但是因为很多人一直在要求一个完整的答案,所以我将发布 Fresheyeball 贡献的最终脚本。

简短版

// Outbound Link Tracking with Google Analytics
// Wallace Sidhrée - http://dreamyguy.com/
// Requires jQuery 1.7 or higher (use .live if using a lower version)
$(function() {
$("a").on('click',function(e){
var url = $(this).attr("href");
if (e.currentTarget.host != window.location.host) {
_gat._getTrackerByName()._trackEvent("Outbound Links", e.currentTarget.host.replace(':80',''), url, 0);
if (e.metaKey || e.ctrlKey || this.target == "_blank") {
var newtab = true;
}
if (!newtab) {
e.preventDefault();
setTimeout('document.location = "' + url + '"', 100);
}
}
});
});

完整版本(注释和“可调试”)

// Outbound Link Tracking with Google Analytics
// Wallace Sidhrée - http://dreamyguy.com/
// Requires jQuery 1.7 or higher (use .live if using a lower version)
$(function() {
$("a").on('click',function(e){
var url = $(this).attr("href");
// Console logs shows the domain name of the link being clicked and the current window
// console.log('e.currentTarget.host: ' + e.currentTarget.host);
// console.log('window.location.host: ' + window.location.host);
// If the domains names are different, it assumes it is an external link
// Be careful with this if you use subdomains
if (e.currentTarget.host != window.location.host) {
// console.log('external link click');
// Outbound link! Fires the Google tracker code.
_gat._getTrackerByName()._trackEvent("Outbound Links", e.currentTarget.host.replace(':80',''), url, 0);
// Checks to see if the ctrl or command key is held down
// which could indicate the link is being opened in a new tab
// Also checks if target="_blank" on the link tag which indicates it should always be opened in a new tab
if (e.metaKey || e.ctrlKey || this.target == "_blank")) {
// console.log('ctrl or meta key pressed');
var newtab = true;
}
// If it is not a new tab, we need to delay the loading
// of the new link for a just a second in order to give the
// Google track event time to fully fire
if (!newtab) {
// console.log('default prevented');
e.preventDefault();
// console.log('loading link after brief timeout');
setTimeout('document.location = "' + url + '"', 100);
}
}
/*
else {
console.log('internal link click');
}
*/
});
});

关于javascript - 在 Google Analytics 中跟踪所有出站链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12302300/

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