0
我需要調用一個函數內部jQuery的AJAX funtion並檢查響應數據jQuery的正確syncronous AJAX調用
function checkInput(){
var success;
$.ajax({...}).then(function (data) {
success = data.response
console.log(success); // true/false correct!
if (success)
call_other_func(); // works
});
console.log(success); // undefined;
return success; // i need to return success variable
}
其他函數調用checkInput
if (checkInput()){
console.log('correct input value');
}
else{
call_error_validation_func();
}
隨着異步:假的作品,但它是不正確辦法。
我該怎麼辦?
謝謝
請讓我知道這對你的作品 – wmehanna
我需要使用delegate.done功能後數據 – AldoZumaran