Jquery: Return the value of a ajax call to caller function?

后端 未结 4 601
醉酒成梦
醉酒成梦 2021-01-27 15:53

Im trying to return the value that a $ajax call returns, from a function but it only returns \"undefined\". If a alert the \"reponse\" from the ajax call it returns the rigth va

4条回答
  •  情话喂你
    2021-01-27 16:40

    You cannot do this unless you wait for the ajax call to complete by using asynch:false. However I would not do this as it locks up the browser and if the call fails to return the user will have to crash out. It is better to refactor your script and within the success function of the .ajax call to invoke a callback function.

    See my answer to a similar question here

提交回复
热议问题