为什么onclick() gtag Event在其他事件正常的情况下没有出现在GA中
Why onclick() gtag Event does not appear in GA when other events are ok
为什么这个简单的事件没有 fire/appear
<a id="menu" href="a.html" onclick="gtag('event', 'navigation', 'menu');">A</a>
浏览器js控制台或Google标签助手工具都没有报错,显示PageLoadsOK。
分析事件在 Google 其他事件的分析中显示正常,这些事件在 JS React 组件内执行,如下所示:
gtag("event", "game", {
event_category: "Update"
});
两个示例使用的语法不同:
gtag('event', 'navigation', 'menu');
应该是:
gtag('event', 'menu', { event_category: 'navigation' });
https://developers.google.com/analytics/devguides/collection/gtagjs/events
为什么这个简单的事件没有 fire/appear
<a id="menu" href="a.html" onclick="gtag('event', 'navigation', 'menu');">A</a>
浏览器js控制台或Google标签助手工具都没有报错,显示PageLoadsOK。
分析事件在 Google 其他事件的分析中显示正常,这些事件在 JS React 组件内执行,如下所示:
gtag("event", "game", {
event_category: "Update"
});
两个示例使用的语法不同:
gtag('event', 'navigation', 'menu');
应该是:
gtag('event', 'menu', { event_category: 'navigation' });
https://developers.google.com/analytics/devguides/collection/gtagjs/events