ajax中的回调函数
在ajax中。。通过onreadystatechang来调用回调函数! 那为什么这个回调函只会执行一次呢??例如:xmlhttp.onreadystatechang=dd;
function dd(){
alert("abcd");---------------- 测试
if (xmlhttp.readystate==4){
if(xmlhttp.status==200){
alert(xmlhttp.responseText);
}
else{
alert("不正常");
}
}
}
我在第一个if语句前随便加入一个弹出语句alert("abcd");
为什么我的alert("abcd")只会执行一次呢???