web建站教程

  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. seo教程
  6. 前端知识
  7. 百度echarts
  8. php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板下载

js判断AdBlock广告是否开启拦截

110 ℃
     

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)
});

js判断AdBlock广告是否开启拦截

js复制内容根据文章字数多少自动添加不同的版权信息

Moment.js库的基本用法

利用moment.js 库获取当前日期昨天、今天、明天

原生js获取当前日期昨天、今天、明天(2种方法)

标签: AdBlock广告, AdBlock插件, js广告判断

上面是“js判断AdBlock广告是否开启拦截”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_13653.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

本文共计1199个字,预计阅读时长8分钟
AI工作站-收录全球各行各业AI应用,轻轻松松做事!
BI模板合集
上一篇: 推荐一个免费可商用psd文件素材网站——FreePik
下一篇: 一行代码轻松实现优雅的过渡动画插件——AutoAnimate
x