我有这段代码,代码运行无异常。
(function () {
$("a.ga-track").click(function () {
var anchor = this;
try {
_gaq.push(["_trackEvent", "External links", anchor.hostname]);
} catch (err) { }
setTimeout(function () {
document.location.href = anchor.href;
}, 100);
return false;
});
})();
我应该在 GA 中找到它生成的统计数据吗?
编辑:这是网站 http://andersmalmgren.github.io/FreePIE/
将我的代码更新为此target="_blank"
不需要超时
(function () {
$("a.ga-track").click(function () {
var anchor = this;
try {
_gaq.push(["_trackEvent", "External links", anchor.href]);
} catch (err) {
console.log(err);
}
if ($(this).attr("target") !== "_blank") {
setTimeout(function () {
document.location.href = anchor.href;
}, 100);
return false;
}
return true;
});
})();