如何等待函数的完整执行,然后再调用
之类的其他函数<script src="whereMyfunctionIs.js"></script>
<script>
$(window).ready(start());
function start (){
myfunction().WhenFunctionDone(myOtherFunction());
}
</script>
我想知道是否有一个方法(js或jQuery)可以等待myfunction
完成,我已经用完了,准备好并加载了,它不会等待。
错误讯息:
jQuery.Deferred exception:无法读取未定义的属性'ready'
jQuery.Deferred异常:无法读取未定义的属性'load'
jQuery.Deferred exception:无法读取undefined
的属性'done'