挂钩到 _gaq.push - 谷歌分析

发布于 2024-12-11 13:39:01 字数 228 浏览 0 评论 0原文

我在网站上的很多地方(通过脚本、Flash 等)调用 _gaq.push。我还建立了自己的本地跟踪服务。与其在当前代码中的同一点调用我的服务,不如创建一个每次调用 _gaq.push 时调用我的代码的函数。

例如:

if(_gaq.push is called){
    $.get('http://mydomain.com/tracking_pixel.gif');
}

I call _gaq.push in a lot of various places on my website (via scripts, flash etc). I have also set up my own local tracking service. Rather than call my service at the same point in my current code is it possible to create a function which calls my code everytime I call _gaq.push.

eg:

if(_gaq.push is called){
    $.get('http://mydomain.com/tracking_pixel.gif');
}

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

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

发布评论

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

评论(2

メ斷腸人バ 2024-12-18 13:39:01

在变量中捕获 _gaq.push 函数,然后使用您自己的函数覆盖它,该函数调用原始函数,然后调用您的代码。然后,在您覆盖它之后调用 _gaq.push 的任何内容都会调用两者。例子:

_gaq.basePush = _gaq.push;                           //capture the original
_gaq.push = function(/* params? */) {                //override it
    _gaq.basePush(/* params? */);                    //call the original
    $.get('http://mydomain.com/tracking_pixel.gif'); //call your function
};

Capture the _gaq.push function in a variable and then override it with your own function that calls original and then calls your code. Then anything that calls _gaq.push after you override it will call both. Example:

_gaq.basePush = _gaq.push;                           //capture the original
_gaq.push = function(/* params? */) {                //override it
    _gaq.basePush(/* params? */);                    //call the original
    $.get('http://mydomain.com/tracking_pixel.gif'); //call your function
};
飘过的浮云 2024-12-18 13:39:01

如果采用反向模式呢?

function doPush(){
   _gaq.push; //Do your push here
   $.get('http://mydomain.com/tracking_pixel.gif');
}

我忽略如何使用 _gaq.push,但您始终可以参数化 doPush 传递所需的参数并相应地调用 _gaq.push

What about doing in reverse mode?

function doPush(){
   _gaq.push; //Do your push here
   $.get('http://mydomain.com/tracking_pixel.gif');
}

I ignore how to use _gaq.push, but you can allways parametrize doPush passing your needed arguments and call _gaq.push accordingly.

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