这个社区的新成员(请不要大惊小怪),并且研究和尝试都没有成功。
我正在尝试通过Google Analytics(分析)跟踪点击出站链接的访问者。出站链接是在div中“坐着”(对不起,我的法语),我尽力应用了现有资源,很遗憾,无济于事,没有任何跟踪。如果您可以帮助我进行故障排除,那绝对是很棒的。如果您想知道,(目前)我对编码/ html几乎一无所知。这是当前代码:
<div class="webinarjam-calltocation">
<div class="avia-button-wrap avia-button-left avia-builder-el-6
el_after_av_heading el_before_av_textblock"><a class="inline_popup
avia-button avia-icon_select-no avia-color-green avia-size-x-large
avia-position-center call-to-action" href="#webinarjamlogin"
onlick="gaTrackEvent('eventCategory', 'eventAction',
'eventLabel');"><span class="avia_iconbox_title">>> Ja, bitte nimm mich
in die Gästeliste auf <<</span></a></div>
</div>
答案 0 :(得分:1)
可能会发生这种情况,因为在重定向发生之前,您的事件调用无法与Google联系。 您可以执行以下操作:
<script>
var track_outbound_link = function(url) {
ga('send', 'eventCategory', 'eventAction', 'eventLabel', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
[...]
<a href="https://yourlink.example.com" onclick="trackOutboundLink('https://yourlink.example.com'); return false;">Link label</a>