当前位置 : 主页 > 编程语言 > java >

js之关闭/刷新窗口相关代码

来源:互联网 收集:自由互联 发布时间:2022-09-02
//在子页面写onunload方法 window.onunload=function(){ //刷新父页面 window.opener.reload(); }window.location.reload(); //刷新当前页面. parent.location.reload(); //刷新父亲对象(用于框架) opener.location.reload()
//在子页面写onunload方法
window.onunload=function(){
//刷新父页面
window.opener.reload();
}window.location.reload(); //刷新当前页面.
parent.location.reload(); //刷新父亲对象(用于框架)
opener.location.reload(); //刷新父窗口对象(用于单开窗口)
top.location.reload(); //刷新最顶端对象(用于多开窗口)
window.opener.location.reload();//刷新父窗口
window.close();//关闭当前窗口
setTimeout('window.close()', 2000);//设置延迟关闭窗口

 

ligerUi

var url= __ctx+"/xxx/xx/xxx/dlb.ht?countdate="+rq;
parent.location.href =url;
var dialog = frameElement.dialog;

$.ligerDialog.close();

dialog.close();

 

窗口:打开窗口window.open(), 关闭一个窗口:window.close(), 窗口本身:self
状态栏的设置: window.status=”字符”;
弹出提示信息: window.alert(”字符”);
弹出确认框: window.confirm();
弹出输入提示框: window.prompt();
指定当前显示链接的位置: window.location.href=”url”
取出窗体中的所有表单的数量: document.forms.length
关闭文档的输出流: document.close();

上一篇:问题:弹窗还没点击确认就执行了跳转
下一篇:没有了
网友评论