本文实例讲述了JS实现关闭当前页而不弹出提示框的方法。分享给大家供大家参考,具体如下:
关闭当前页面,并且打开新页面(不提示)
function closeWinAndOpen(url) {
var sWinName = "LR"+parseInt(Math.random() * 100000000);//利用随机数处理WinName
window.open(url,sWinName, 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes');
closeWin();
}
关闭当前页面:
function closeWin() {
window.opener=null;
window.open('','_self');
window.close();
}
关闭父页面:
代码如下:
Response.Write("<script>window.top.opener=null;window.parent.close();</script>")
希望本文所述对大家JavaScript程序设计有所帮助。