gpt4 book ai didi

javascript - 为什么我的 Google Analytics callto 事件跟踪代码没有跟踪?

转载 作者:行者123 更新时间:2023-11-30 19:16:00 24 4
gpt4 key购买 nike

我正在尝试跟踪单击按钮时的调用电话事件。我的 GA 代码是从设置向导中提供的。

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{site.google_analytics_tracking_id}}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{site.google_analytics_tracking_id}}');
</script>

我的按钮代码是:

<!-- Banner -->
<section id="banner">
<div class="inner">
<header>
<h2>{{ site.title }}</h2>
<figure>
<picture class="image logo">
<span class="icon logo fa-balance-scale"></span>
</picture>
<figcaption><small>Serving: {{ site.location }}</small></figcaption>
</figure>
</header>
<p><strong>We Work Hard To Protect Your Rights!</strong></p>
<footer>
<ul class="buttons stacked">
<button class="button fit">Call: <a href="tel:{{site.tel}}" onClick=”ga('send', 'event', 'Calls', 'clicked', 'Contact Office', 1);”>{{site.tel}}</a></button>
</ul>
</footer>
</div>
</section>

投票

请对问题投赞成票或反对票。在否决投票之前,建议编辑或发表评论?

最佳答案

您通过 gtag.js 实现了 GA,您用于 onClick 的功能用于 analytics.js,因此您需要使用 the right functions .您需要以这种格式进行操作:

gtag('event', <action>, {
'event_category': <category>,
'event_label': <label>,
'value': <value>
});

所以对于你的例子:

gtag('event', 'clicked', {
'event_category': 'Calls',
'event_label': 'Contact Office',
'value': 1
});

关于javascript - 为什么我的 Google Analytics callto 事件跟踪代码没有跟踪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57997236/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com