我想通过JS在Google分析工具中记录目标,所以首先我将代码添加到页面中,例如:
<meta name="description" content="iReserve">
<link rel="shortcut icon" href="/ico/favicon.ico" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-YYYYYY');</script>
<!-- End Google Tag Manager -->
</head>
<body style="margin:0px; padding:0px; display: none;" class="" id="capture">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-YYYYYY"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
当然,我会在Google Analytic中创建一个目标,例如:
现在,我将此代码添加到我的ajax函数中:
success: function(data)
{
console.log(data);
if (data.data.Status == 'Success') {
ga('send', 'event', { eventCategory: 'Reservation', eventAction: 'Submit', eventLabel: 'Confirm Reservation Form', eventValue: 1});
.... etc ...
出什么问题了?为什么不记录目标?请帮助!
答案 0 :(得分:2)
您的事件是否正在Analytics(分析)中注册,但目标没有触发?
您的eventValue为1,但是您的目标规则指定的值大于 1才能触发目标。
鉴于您在代码和目标规则中都使用了1的静态值,我想说,最好完全不使用任何值。