第一种:JS定时自动关闭窗口
第二种:点击链接没有提示的JS关闭窗口
第三种:php代码提交窗口之后提示信息并自动关闭窗口的js代码
document.write ""
自动返回上一页的代码:
document.write("")
IE6-7 JS关闭窗口不提示的方法
方法一:
js 代码
function CloseWin() //这个不会提示是否关闭浏览器
{
window.opener=null;
//window.opener=top;
window.open("","_self");
window.close();
}
方法二:
open.html
js 代码
function open_complex_self() {
var obj_window = window.open('close.html', '_self');
obj_window.opener = window;
obj_window.focus();
}
close.html
js 代码
window.close();
另附:
//普通带提示关闭
function closeie(){
window.close();
}
//关闭IE6不提示
function closeie6(){
window.opener=null;
window.close();
}
//关闭IE7不提示
function closeie7(){
window.open('','_top');
window.top.close();
}
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn