猿问

如下,请问怎么让js函数 一个执行完之后在执行另外一个?

function start_flow()
{
start_project();
start_config();
...
}

function start_project()
{
...
}

function start_config()
{
...
} 函数中有ajax异步请求 所以 没有办法使得前一个函数执行完后 后一个在执行
现在的问题是start_project()还没有执行完成就开始执行start_config()了,这样会出错,
想达到的效果是start_project()执行完成再start_config(),请问要如何做? 有两个可行的方法 一 为 settimeout 创立时间差(肯定可行) 二为 确定一个返回值 true 判断返回值 是否执行成功(这个没有试验过 感觉可能不太可行) 我想请问的是 有没有效率高一点的 更好的方法?

至尊宝的传说
浏览 2087回答 3
3回答

繁花如伊

第一种情况:运动函数执行完之后再执行另外一个函数&nbsp;注释:按钮点击之后,div先显示出来,然后宽度和高度再增加到300px<button class="btn">点击我</button><div id="div2"><p>人的灵魂所必须的东西,是不需要用金钱来买的</p></div><style>div{height: 200px;width: 200px;padding:15px;background: #ececec;display: none;}</style><script>$().ready(function(){$('.btn').click(function(){$('div').show();$('div').animate({ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'width':'300px', &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'height':'300px'},1000)})})12345678910111213141516171819或者这样写,如果div的高度宽度增加到300px,然后会执行另外一个函数,div的背景色会变成绿色$().ready(function(){$('.btn').click(function(){$('div').show();$('div').animate({ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'width':'300px', &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'height':'300px'},function(){$(this).css('background','green')})})})123456789101112第二种情况:把函数a绑定到函数c 上,按钮点击的时候执行函数c,传入的参数是a ,那么函数就先执行函数a(),然后再执行函数b();就形成了先后执行函数$().ready(function(){$('.btn').click(function(){c(a);})})function a() {$('div').animate({'width':'300px'},1000)}function b(){$('div').animate({'height':'300px'},1000)}function c(x){x();b();}

30秒到达战场

你可以把另外执行的那个函数封装起来呀,在第一个函数的最后再调用,这样就达到你的要求的了。比如这样:functiononclick()//这是一个点击事件{alert("这是一个点击事件");onclick2();//这里是调用第二个函数的地方}functiononclick2()//...

繁星coding

start_project 添加一个参数,start_project(fn){………………fn()}function start_flow(){start_project(start_config);……}&nbsp;
随时随地看视频慕课网APP
我要回答