
js判断当前网站是否开启了AdBlock广告拦截功能,如果开启AdBlock插件显示提示“为了支持本项目的长期发展,请将本网站加入广告拦截器的白名单。”,否则不显示!
function ABDetected(){
var adBlockDetected_div=document.createElement("div");
adBlockDetected_div.style.cssText="position: absolute; top: 0; left: 0; width: 100%; background: #fc6600; color: #fff; z-index: 9999999999; font-size: 14px; text-align: center; line-height: 1.5; font-weight: bold; padding-top: 6px; padding-bottom: 6px;";adBlockDetected_div.innerHTML="为了支持本项目的长期发展,请将本网站加入广告拦截器的白名单。";
document.getElementsByTagName("body")[0].appendChild(adBlockDetected_div);
var adBlockDetected_close=document.createElement("div");
adBlockDetected_close.style.cssText="position: absolute; top: 0; right: 10px; width: 30px; height: 30px; background: #fc6600; color: #fff; z-index: 9999999999; line-height: 30px; cursor: pointer;";
adBlockDetected_close.innerHTML="×";
adBlockDetected_div.appendChild(adBlockDetected_close);
adBlockDetected_close.onclick=function(){
this.parentNode.parentNode.removeChild(this.parentNode)
}
}
function docReady(t){
"complete"===document.readyState||"interactive"===document.readyState?setTimeout(t,1):document.addEventListener("DOMContentLoaded",t)
}
docReady(function(){
setTimeout(function(){
if(window._AdBlockInit===undefined){
ABDetected()
}
},3e3)
});
JavaScript获取指定网站状态码查询代码(2种实现方法)
标签: AdBlock广告, AdBlock插件, js广告判断
上面是“js判断AdBlock广告是否开启拦截”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_13653.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

jQuery如何获取图片高度和宽度
妙写AI