针对移动浏览器的广告拦截器检测

时间:2016-07-15 13:05:41

标签: phpbb3 adblock

我的广告拦截器检测不适用于uc浏览器,但它适用于opera mini和pc浏览器。

如何阻止打开广告拦截器的uc浏览器?

1 个答案:

答案 0 :(得分:0)

我正在使用Adsense,并使用此代码在UC浏览器中检测广告拦截器。

setTimeout(function() {
  if( document.querySelectorAll && document.querySelectorAll('[data-adsbygoogle-status]').length==0 ) {
    alert('AdBlock detected');
  }
}, 3000);

目前,我正在使用UC浏览器v10.10.5.809进行测试,并且可以正常使用。