对于一个新项目,我想使用 Google Analytics 4。
直到今天,我还在使用普通的 Google Analytics,在我的隐私政策页面上,我有一个 Google Opt Out Cookie。
这是通过一个简单的 JavaScript 代码实现的。
代码看起来像这样:
<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-XXXX-Y';
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
// Opt-out function
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
</script>
使用此代码,我可以在我想要的页面上设置 Google Opt Out Cookie
<a href="javascript:gaOptout()">Click here to opt-out of Google Analytics</a>
所以现在我遇到了问题,新的 ga4 无法正常工作。在 ga4 的开发者页面上有一个禁用 ga4 的代码。
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=MEASUREMENT_ID"></script>
<script>
window['ga-disable-MEASUREMENT_ID'] = true;
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'MEASUREMENT_ID');
</script>
如何设置按钮链接以禁用 GA4?
任何人都可以在这里帮助我???
已经谢谢了,保持健康,享受你的生活:)