我目前的广告拦截器检测不适用于uc浏览器,但它适用于opera mini和pc浏览器。
如何阻止打开广告拦截器的uc浏览器?
发布于 2016-07-23 11:16:17
我正在使用Adsense,并使用此代码来检测UC浏览器中的广告拦截器。
setTimeout(function() {
if( document.querySelectorAll && document.querySelectorAll('[data-adsbygoogle-status]').length==0 ) {
alert('AdBlock detected');
}
}, 3000);
目前,我正在使用UC Browser v10.10.5.809进行测试,它工作正常。
https://stackoverflow.com/questions/38396895
复制相似问题