gpt4 book ai didi

javascript - 用户选择退出 gtag.js

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

我们正在寻求为我们的网站访问者实现禁用跟踪的选项。
我读过谷歌分析 opt-out dev guide但我仍然不完全清楚如何做到这一点。
仅仅触发window['ga-disable-GA_TRACKING_ID'] = true;就足够了吗?当一个按钮被点击?
谷歌分析会记住这个用户的设置,还是每次访问都记住?
如果我有第二个按钮将其设置为 false,用户能否重新启用跟踪? ?

最佳答案

将以下内容粘贴到 Analytics 代码之前的 head 标记中(将 UA 替换为您自己的 UA)

<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>

并使用它来触发它:
<a href="javascript:gaOptout()">Click here to opt-out of Google Analytics</a>

关于javascript - 用户选择退出 gtag.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48468226/

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