我现在使用的是function ajax(i,p,f){ var x=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP"); x.open(p?'POST':'GET',i,1); x.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); x.send(p||''); if(f)x.onreadystatechange=f;}这样用是异步执行的,如何改为同步执行?
添加回答
举报
0/150
提交
取消