小编nee*_*rti的帖子

在执行另一个函数之前,如何使jquery等待一个函数完成?

function test(){
var distance=null;
       first();
       second();
       third();
alert(distance);//it shows null always because it take 2 second to complete.

}
 function first(tolat, tolon, fromlat,fromlon){

// calulating road distance between two points on the map using any other distance caluculating apis. 

distance=dis;  // update the value of distance but it takes 2 second to complete.

}
 function second(){}
 function third(){}
Run Code Online (Sandbox Code Playgroud)

我在我的代码中有这种情况,现在很多时间函数三在第一次和第二次完成执行之前被调用而距离值没有更新.

javascript ajax jquery

16
推荐指数
2
解决办法
6万
查看次数

标签 统计

ajax ×1

javascript ×1

jquery ×1