为什么我的js关闭窗口没执行呢

JavaScript016

为什么我的js关闭窗口没执行呢,第1张

到了web浏览器上不管是jsp,还是asp,php等等,最终生成的内容都是html。如果需要交互必定就是javascript。以关闭页面的js来说,你想要的功能,两种方式:

第一、直接执行代码所有执行的代码不包含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请求完毕。

希望对你有帮助。

一般的流程:

1、获取按钮对象

2、设置按钮对象的disabled的属性为true(禁用),false(不禁用)

示例:

buttonObject=document.getElementById('btnObj')

buttonObject.disabled=true

原因是你加了验证控件。在你点退出时,验证控件起了作用,所以出不去。

只要把你要验证的控件,你的验证控件,和要让验证起作用的BUTTON控件加上GROUP就好了。方法是 在你的gh_tb,RequiredFieldValidator1,pwd_tb,RequiredFieldValidator2,dl_btn这5个控件上,加上这句ValidationGroup="abcd",如下

<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="gh_tb"

ErrorMessage="请输入工号" ValidationGroup="abcd"></asp:RequiredFieldValidator>

这下子就好用了。

注意,千万别给退出按钮加这句哦,那样就又没用了。

希望能帮到你!!!