在javascript中,可以在window.close前添加“window.opener=null;window.open('','_self');”語句設(shè)置不提示彈窗。window.opener引用的是window.open打開的頁面。
在window.close();?前加上
window.opener = null; window.open('', '_self');
就不會(huì)提示’是否要關(guān)閉本窗口’了!
所以打開新的網(wǎng)頁并且關(guān)閉當(dāng)前頁面的方法是:
window.open(newurl); window.opener = null; window.open('', '_self'); window.close();
其中newurl為要轉(zhuǎn)向頁面的URl。