为什么以事件处理函数匿名函数形式传递的回调函数确保回调函数在被调用函数执行后执行?
所以我的问题是:
情况1:
$.get( "myhtmlpage.html", myCallBack( param1, param2 ) ); //this wont work
案例二:
$.get( "myhtmlpage.html", function() { // will execute $.get and then myCallBack
myCallBack( param1, param2 );
});
为什么会这样?