我有這樣的jQuery的AJAX調用返回值
function check(parameters){
some code;
$.post('/url', function(data) {
//and here I want if data==0 return false from function check
//if no go and skip to instruction 1
});
instruction 1;
}
我想在我的程序以後如果(檢查(PARAMS)== 0),但它似乎並不工作。例如:使用代碼。 我如何在Java腳本做到這一點?我需要做如果($。post ... == 0)? 致以問候
感謝您的幫助它解決了我的問題 – John