gpt4 book ai didi

google-analytics - 针对目标的 Google Analytics(分析)事件跟踪

转载 作者:行者123 更新时间:2023-12-03 17:37:12 25 4
gpt4 key购买 nike

我在将 Google 目标用于我的事件跟踪时遇到问题。我已将 Google 甚至跟踪代码添加到我的网页中。但是,我无法在我的 Google 目标中检查任何转化,但事件结果可以显示在 Google 分析 --> 行为 --> 事件概览中。

我的代码如下

`     <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','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-87810245-1', 'auto');
ga('send', 'pageview');

</script>
<script>

$('#contact-form').on('submit', function(event) {
// Prevent the browser's default form submission action.
event.preventDefault();

ga('send', 'event', {
eventCategory: 'Contact',
eventAction: 'Information Request',
eventLabel: 'Contact Form',
hitCallback: function() {
$('contact-form').trigger('submit');
}
});
});

</script>`

我的提交按钮的代码:
<input type="submit" id="submit" value="Validate and Submit" onclick="ga('send', 'event', 'form', 'submit', 'order sent', 10);"/>

我的谷歌目标:

enter image description here enter image description here

谷歌分析事件概述:
enter image description here

最佳答案

因此,您有两个事件正在进行,一个用于单击提交按钮(可能是为了跟踪意图),另一个用于表单提交本身。您的目标配置为期望值 Greater than 10,但您的表单提交事件没有传递值。您应该添加一个值(大于 10),或者从目标配置中删除该值。此外,您的屏幕截图可能仅显示单击事件(因为与之关联的值为 10),但您可能对实际提交本身更感兴趣。

关于google-analytics - 针对目标的 Google Analytics(分析)事件跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42022603/

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