我可以捕获div#Id并放入Google Analytic Event

时间:2014-10-13 08:13:54

标签: google-analytics analytics

我可以这样做吗

var eLabel = $('#example_placeholder').html();

并将eLabel放入此

ga('send', {
'hitType': 'event',          // Required.
'eventCategory': 'cash',   // Required. privilege acquisition creditcard installment
'eventAction': 'ClickView',      // Required.
'eventLabel': eLabel
});

1 个答案:

答案 0 :(得分:0)

是的,你可以这样做。你也可以缩短这样的事情:

ga('send','event','cash','ClickView',$('#example_placeholder').html());