第一、直接执行代码所有执行的代码不包含ajax请求。
function close()
{
//你要执行的非ajax异步任务或代码写在这里
if(condition){
console.log("execute my task")
for(var i = 0i <100i++)
{
console.log(i+"="+i)
}
}else{
//不会执行后面的关闭代码
alert("warning info")
return
}
//写try的目的是因为try语句中的内容,某些浏览器不一定支持
try{
window.openner = null
window.open("_blank","_self","")
window.close()
}catch(e){
winddow.close()
}
}
第二、有ajax请求
方式两种,以jquery的ajax为例
1、采用异步请求,在异步请求完成后关闭窗口
function close()
{
//your other codes go here
.... ...
var myurl = ""
$.ajax({
//注意这歌参数设置是否异步请求,这个设置成异步的
async:true,
url:myurl,
type:"post",
data:{sessionid:"1111-1111-1111-222"},
dataType:"json",
success:function(response)
{
//your other codes go here
... ...
try{
window.openner = null
window.open("_blank","_self","")
window.close()
}catch(e){
winddow.close()
}
},
error:function(xhr,e,emsg){
//ajax 出错的时候回调处理方法
}
})
}
2、采用同步请求
function close()
{
//your other codes go here
.... ...
var myurl = ""
$.ajax({
//注意这歌参数设置是否异步请求,这个设置成异步的
async:false,
url:myurl,
type:"post",
data:{sessionid:"1111-1111-1111-222"},
dataType:"json",
success:function(response)
{
//your other codes go here
... ...
},
error:function(xhr,e,emsg){
//ajax 出错的时候回调处理方法
}
});
try{
window.openner = null
window.open("_blank","_self","")
window.close()
}catch(e){
winddow.close()
}
}
最后不知道你品出我写出来的为什么会那样?我解释一下ajax异步与同步的区别,帮助你理解:
同步,代码执行到ajax这块会一直等到ajax请求结束再执行ajax后面的代码;异步,碰到ajax会放倒一个任务队列中去,任务执行后采取会掉通知进行处理。并且ajax任务放入队列后立马会执行后续的代码,不等ajax请求完毕。
希望对你有帮助。
这不难var that = window.open('anything')
$(that).unload(function() { opener.location.href = '网址'})
不过 网址 必须跟这个打开网页的网域是一致的 (基於 WWW 安全机制的规限)
子页面关闭后,父页面接收参数并调用本页面的函数。比如:
父页面:
var assets = lookUpAssetsValues(lookUpName, dialogWidth, dialogHeight, userPara)
function lookUpAssetsValues(){
...
return window.showModalDialog(url, null, popscript)
}
子页面:函数中
window.returnValue=“数据”
关闭子页面后,页面assets 会接受子页面中的数据,然后父页面根据数据做其他处理。