一個(gè)強(qiáng)制彈出窗口的JavaScript類:ForceWindow
一個(gè)可以不被廣告攔截器攔截的彈出窗口
ForceWindow.iclass.js代碼如下(使用、講解、相關(guān)說(shuō)明全部在注釋中):
------------------------------------------------------------------------------------
/**
* 定義ForceWindow類構(gòu)造函數(shù)
* 無(wú)參數(shù)
* 無(wú)返回值
*/
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方法
* 參數(shù)sUrl:字符串,要打開(kāi)窗口的URL。
* 無(wú)返回值
*/
ForceWindow.prototype.open = function (sUrl)
{
this.f.action = sUrl;
this.f.submit();
}
/**
* 實(shí)例化一個(gè)ForceWindow對(duì)象并做為window對(duì)象的一個(gè)子對(duì)象以方便調(diào)用
* 定義后可以這樣來(lái)使用:window.force.open("URL");
*/
window.force = new ForceWindow();
/**
* 用本程序彈出的窗口將不會(huì)被廣告攔截軟件攔截,但有一個(gè)缺點(diǎn):你無(wú)法象對(duì)window.open彈出的窗口那樣對(duì)外觀進(jìn)行定制。
* 你當(dāng)然也可以在使用前實(shí)例化一個(gè)ForceWindow對(duì)象:
* var myWindow = new ForceWindow();
* 這樣來(lái)使用:
* myWindow.open("URL");
* 本程序測(cè)試通過(guò)的瀏覽器:IE 5+、Firefox 1.0、Mozilla 1.7.5、Netscape 7.2、Opera 7.23
* 友情提示:如果你將本程序用于強(qiáng)制彈出廣告,請(qǐng)更多的想想瀏覽者的感受!
*/
該文章在 2011/11/29 9:01:53 編輯過(guò)