JS 콜백 함수는 매우 간단합니다. 코드를 살펴보세요. a.js에서 var myback = null; function load(obj){ myback = obj; } function save(){ // 后台请求 $.ajax.post...... // 调用回调函数 myback(); } b.js 호출 // 就是把要回调的函数当成参数传递过去! load(function(){ this.hide(); })