我正在尝试弄清楚如何使用 adblock 插件跟踪人们。例如 Adblock Plus 设置 div 显示:无。
我在 Google Analytics 中创建了一个自定义维度。
我没有收到任何错误,但感觉不会像我打算的那样工作:
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-xxxxxx', 'domain.de');
ga('send', 'pageview');
if ($(".werbung").css('display') == 'none')
{
ga('set', 'Adblock', 'Ja');
}
else
{
ga('set', 'Adblock', 'Nein');
}
</script>
任何帮助表示赞赏。