나는 ajax 및 콜백 함수를 처음 사용합니다. 개념이 모두 잘못되면 용서해주십시오.
문제점 : 콜백 을 실행할 다른 함수에 매개 변수로 콜백 함수를 보낼 수 있습니까?
function firstFunction(){
//some code
//a callback function is written for $.post() to execute
secondFunction("var1","var2",callbackfunction);
}
function secondFunction(var1, var2, callbackfunction) {
params={}
if (event != null) params = event + '&' + $(form).serialize();
// $.post() will execute the callback function
$.post(form.action,params, callbackfunction);
}