52,792
社区成员




function changeMainFrameToManualDial(phone_id)
{
if( !initXMLHttp() )
return;
xmlHttpReq.open("GET","../service/xml_user_call_prop.jsp?userId=<%=user.getId()%>&now="+ getDateTime() +"&phone_id="+phone_id, true);
xmlHttpReq.onreadystatechange = HandleGetUserCallProp;
xmlHttpReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttpReq.send(null);
}
function HandleGetUserCallProp()
{
if(xmlHttpReq.readyState != 4) return;
if(xmlHttpReq.status != 200) {
alert("你请求的页面错误2");
return;
}
........
}
function HandleGetUserCallProp()
{
if(xmlHttpReq.readyState != 4) return;
if(xmlHttpReq.status != 200) {
alert("你请求的页面错误2\n\n"+xmlHttpReq.responseText);
return;
}
}