首页 相关文章 可以不被浏览器拦截的弹出窗口JS代码

可以不被浏览器拦截的弹出窗口JS代码

一个可以不被广告拦截器拦截的弹出窗口

ForceWindow.iclass.js代码如下(使用、讲解、相关说明全部在注释中):

------------------------------------------------------------------------------------

/**
* 定义ForceWindow类构造函数
* 无参数
* 无返回值
*/
function ForceWindow ()
{
this.r = document.documentElement;
this.f = document.createElement("FORM");
this.f.target = "_blank";
this.f.method = "post";
this.r.insertBefore(this.f, this.r.childNodes[0]);
}

/**
* 定义open方法
[ 查看全文 ]

2016-02-20 标签:

可以不被浏览器拦截的弹出窗口JS代码的相关文章

手机页面
收藏网站 回到头部