在我的Javascript代码中,我有跟踪自定义事件的功能:
ga('send', 'event', 'Open track', 'test');
现在,有没有办法,添加另一个跟踪ID,所以当这个自定义事件跟踪触发时,我可以发送此数据,例如:
UA-434341791-2?
感谢您的建议。
答案 0 :(得分:1)
也许您可以使用此事件值? (它是一个整数)
https://developers.google.com/analytics/devguides/collection/analyticsjs/events
ga('send', {
'hitType': 'event', // Required.
'eventCategory': 'Open track', // Required.
'eventAction': 'click', // Required.
'eventLabel': 'test',
'eventValue': 4343417912
});