$.ajax({ type:'POST', , data:{'staffName':staffName,'password':password}, dataType:'text', success:function(msg){ if(msg=="NO"){ alert("用户名或密码不正确"); }else if(msg=="OR"){ alert("用户被锁定"); }else { location.href ='index.do'; } } });
ajax success函数中,异步使用不可以改变JS全局变量的值;return true 或return false是无效的。
使用jQuery获取如下表对象ID为btnDel的对象方法为:
由于tr ID不相同无法用$('#btnDel')直接获取ID为btnDel的所有对象,可使用$('table>tr').children('td').children('#btnDel')来获取。