在页面加载完毕时同时执行2段ajax代码 结果只能执行一段

原来的代码:

 

function getcourse()
{
  sendmsg="coursecategid="+document.getElementById("coursecate").value;
 // window.alert(sendmsg);
 S_xmlhttprequest();
    $url=_webRoot_+"/main/getcourse/";
    //$url="http://localhost/rr/main/getcourse/";
    //alert($url);
 xmlHttp.open("POST",$url,true);
 xmlHttp.onreadystatechange=courselist;
 xmlHttp.setrequestheader("content-length",sendmsg.length);
 xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

 xmlHttp.send(sendmsg);
}
function getemployees()
{
  senddeptmsg="deptid="+document.getElementById("deptlist").value;
 S_xmlhttprequest();
    $url=_webRoot_+"/main/getemployees/";
 xmlHttp.open("POST",$url,true);
 xmlHttp.onreadystatechange=employeeslist;
 xmlHttp.setrequestheader("content-length",senddeptmsg.length);
 xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

 xmlHttp.send(senddeptmsg);
}

window.οnlοad=function()
{
  getemployees();
 getcourse();

}

 

原因分析:应该是2次请求后台有冲突,所以改为顺序发送请求,以前是并行发送 

 

修改

function getemployees()
{
  senddeptmsg="deptid="+document.getElementById("deptlist").value;
 S_xmlhttprequest();
    $url=_webRoot_+"/main/getemployees/";
 xmlHttp.open("POST",$url,false);
 xmlHttp.onreadystatechange=employeeslist;
 xmlHttp.setrequestheader("content-length",senddeptmsg.length);
 xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

 xmlHttp.send(senddeptmsg);
}


xmlHttp.open("POST",$url,false); 这个是同步,就是第一个方法执行完,才继续走下面的程序 
xmlHttp.open("POST",$url,true); true是异步,就是不等上面执行完,

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值