我在使用Google Goals进行“我的事件跟踪”时遇到了问题。我已将Google偶数跟踪代码添加到我的网页中。但是,我无法检查Google目标中的任何转化,但事件结果可以显示在Google Analytic中 - >行为 - >活动概述。
我的代码在下面
` <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);"/>
我的Google目标:
答案 0 :(得分:1)
因此,您有两个事件正在进行,一个用于单击提交按钮(可能跟踪意图),另一个用于表单提交本身。您的目标配置为期望值Greater than
10,但您的表单提交事件未传入值。您应该添加一个值(大于10),或从目标配置中删除该值。此外,您的屏幕截图可能只显示点击事件(因为与之相关的值为10),但您可能对实际提交内容更感兴趣。