labjs加载谷歌分析

发布于 2024-12-14 05:56:54 字数 565 浏览 0 评论 0原文

有人使用 LABjs 来加载谷歌分析吗?

您将其包含在链中的什么位置?

我找到了这个脚本,但不确定是否要在之前或之后包含我的其他脚本

$LAB
.script("js/myscripts.js") //here?
.script(('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js')
.wait(function(){
var pageTracker = _gat._getTracker("UA-XXXXX-X");
pageTracker._trackPageview();
.script("js/myscripts.js") //or here?
});

另外,有没有人将 LABjs 与 getclicky 一起使用?您是否为 google-analytics 做了类似于上述负载链的操作?

Has anyone used LABjs for loading google analytics?

Where do you include it in the chain?

I found this script but wasn't sure whether to include my other scripts before or after

$LAB
.script("js/myscripts.js") //here?
.script(('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js')
.wait(function(){
var pageTracker = _gat._getTracker("UA-XXXXX-X");
pageTracker._trackPageview();
.script("js/myscripts.js") //or here?
});

Also, has anyone used LABjs with getclicky? Did you do something similar to the above load chain for google-analytics?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥醉 2024-12-21 05:56:54

建议的选项是为谷歌分析创建另一个加载链。
在一条链中加载谷歌分析脚本,在另一条链中加载您的代码。

引用 Kyle 的如何使用 LabJs 加载 GA 的要点。

我建议使用完全独立的链加载谷歌分析。
它既不依赖于您的程序中的任何其他代码,也不依赖于任何其他代码。
页。因此,将页面中的其余代码加载到一个链中,然后使用
一个单独的谷歌分析链。

我没有使用过 getclicky 但我认为上面的答案也涵盖了这一点。

The suggested option is to make another loading chain for google analytics.
Load google analytics script in one chain and your code in the other.

Quote from a gist showing how to load GA with LabJs by Kyle.

I recommend loading google analytics with an entirely separate chain.
It's neither dependent on, nor a depdency of, any other code in your
page. So load the rest of the code in your page in one chain, and use
a separate chain for google analytics.

I have not used getclicky but I would assume the above answer covers that as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文