ajax同步异步调用

前端之家收集整理的这篇文章主要介绍了ajax同步异步调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
test.html

<a href="javascript:void(0)" onmouSEOver="testAsync()">
asy.js
function testAsync(){
var temp;
$.ajax({
async: false,
type : "GET",43); font-family:Arial; font-size:14px; line-height:26px">url : 'tet.PHP',43); font-family:Arial; font-size:14px; line-height:26px">complete: function(msg){
alert('complete');
},43); font-family:Arial; font-size:14px; line-height:26px">success : function(data) {
alert('success');
temp=data;
}
});
alert(temp+' end');
tet.PHP
<?PHP
echo "here is html code";
sleep(5);
?>
如上:false为同步,这个 testAsync()方法中的Ajax请求将整个浏览器锁死,
只有tet.PHP执行结束后,才可以执行其它操作。
当async: true 时,ajax请求是异步的。但是其中有个问题:testAsync()中的ajax请求和其后面的操作是异步执行的,那么当tet.PHP还未执行完,就可能已经执行了 ajax请求后面的操作,
如: alert(temp+' 然而,temp这个数据是在ajax请求success后才赋值的,结果,输出时会为空。 原文链接:https://www.f2er.com/ajax/164443.html

猜你在找的Ajax相关文章