前端之家收集整理的这篇文章主要介绍了
ajax异步回调函数中给外部变量赋值的问题,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!doctype html>
<head>
<Meta charset="utf-8">
</head>
<body>
<script src="http://localhost/UIBMSPHPProj/public/js/jquery-1.8.2.min.js"></script>
<script>
$(function(){
var str = "aaa";
$.post("http://localhost/UIBMSPHPProj/index.PHP/Index/abc",{},function(data){
//data = "bbb";
console.log(str);//aaa
str = data;
console.log(str);//"bbb"
});
console.log(str);//"aaa"
});
</script>
</body>
</html>
ajax回调
函数异步的原因导致了在外部直接
获取str的值时还是“aaa”,需要用“bbb”时,可以将用"bbb"的
函数放入回调
函数中
调用。