欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js 無提示關(guān)閉瀏覽器頁面的代碼

 更新時間:2010年03月09日 20:56:00   作者:  
js 無提示關(guān)閉瀏覽器頁面的代碼與函數(shù)需要的朋友可以參考下。
方法一:
復(fù)制代碼 代碼如下:

top.window.opener=null;
top.window.open("","_self");
top.window.close();


方法二:
復(fù)制代碼 代碼如下:

top.window.opener = top;
top.window.open('','_self','');
top.window.close();

_blank,在新窗口顯示目標網(wǎng)頁
_self,在當(dāng)前窗口顯示目標網(wǎng)頁
_parent,框架網(wǎng)頁中當(dāng)前整個窗口位置顯示目標網(wǎng)頁
_top,框架網(wǎng)頁中在上部窗口中顯示目標網(wǎng)頁

腳本之家自己用的函數(shù)
復(fù)制代碼 代碼如下:

function closeWindow() {
window.open('','_parent','');
window.close();
}

相關(guān)文章

最新評論