私はいくつかのタスクを実行する関数を持っています。関数内にはajax呼び出しがあります。ajaxcall から取得した応答が true の場合、関数は残りのタスクを続行する必要があります。それ以外の場合は、その時点で停止する必要があります。しかし、上記のことは起こっていません。代わりに、関数は ajax 呼び出しとは無関係に実行されます。これで私を助けてください
function f1(id)
{
var test= id
var url="contentserver?pagename=mandatory@id"=+id;
var ajax=new Ajaxrequest(url,validatecallback);
ajax.doGet();
if(id==true){
return;
}
........(some code which has to carried out after the ajax call)
}
function validatecallback
{
this function gets the response for the above mentioned ajaxcall
we are setting a global variable(i.e id) here so that we can use that we can retrieve that in function f1
}