将Google Analytics分析事件跟踪添加到javascript函数中

时间:2014-01-30 07:32:02

标签: javascript function events google-analytics tracking

是否可以将google analytics事件跟踪添加到以下javascript函数中?

 $("#wScratchPad3").wScratchPad({

      scratchDown: function(e, percent) {if(percent > 80)window.location.href = 'http://www.url.com';},
      scratchMove: function(e, percent) {if(percent > 80)window.location.href = 'http://www.url.com';},
      scratchUp: function(e, percent) {if(percent > 80)window.location.href = 'http://www.url.com';}

    });

我使用以下分析代码:

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-xx', 'xx');
ga('send', 'pageview');

</script>

2 个答案:

答案 0 :(得分:1)

是的,这是可能的。您应该使用最新版本的Google Analytics(analytics.js代码段)。 根据谷歌的说法:

  

analytics.js代码段是Universal Analytics的一部分,即   目前处于公开测试版。新用户应该使用analytics.js。现有   ga.js用户应该为analytics.js和dual创建一个新的web属性   标记他们的网站。包括ga.js和。是完全安全的   analytics.js片段在同一页面上。

在您的网页上调用分析代码段后,只需在代码中调用跟踪特定事件的以下函数即可。您可以为其指定自定义类别,操作和标签名称。

ga('send', 'event', 'category', 'action', 'label', value);  //label and value are optional

你可以在这里阅读所有相关内容:https://developers.google.com/analytics/devguides/collection/analyticsjs/events

在你的例子中,你可以这样做:

$("#wScratchPad3").wScratchPad({

    scratchDown: function(e, percent) {
        if(percent > 80) {
            ga('send', 'event', 'ScratchPad', 'scratchDown');
            window.location.href = 'http://www.url.com';
        }
    },
    scratchMove: function(e, percent) {
        if(percent > 80) {
            ga('send', 'event', 'ScratchPad', 'scratchMove');
            window.location.href = 'http://www.url.com';
        }
    },
    scratchUp: function(e, percent) {
        if(percent > 80) {
            ga('send', 'event', 'ScratchPad', 'scratchUp');
            window.location.href = 'http://www.url.com';
        }
    }

});

答案 1 :(得分:0)

根据您使用的Google Analytics脚本,您可以轻松获得此功能。我也将代码格式化了一些,以便于阅读。

$("#wScratchPad3").wScratchPad({

    scratchDown: function(e, percent) {
        if(percent > 80) {
            _gaq.push(['_trackPageview', 'http://www.url.com']);
            window.location.href = 'http://www.url.com';
        }
    },
    scratchMove: function(e, percent) {if(percent > 80)window.location.href = 'http://www.url.com';},
    scratchUp: function(e, percent) {if(percent > 80)window.location.href = 'http://www.url.com';}

});

您可以发布您正在使用的分析代码吗?确保删除UA代码。