各イベントにフラグを設定します。最初はfalseです。問題の2つのイベントをフックします(transitionEnd
そしてajax success
、それはのように聞こえます)。各イベントはフラグを設定し、関数を呼び出します。その関数はフラグをチェックします。両方が設定されている場合、それは何かをします。
animate
物事を単純にするために、CSSトランジションではなくを使用した例を次に示します。ソース
jQuery(function($) {
$("#theButton").click(function() {
this.style.display = "none";
$("#box, #content").show();
doTheStuff();
});
function doTheStuff() {
var ajaxDone = false,
ajaxFailed = false,
animationDone = false;
display("Triggering ajax and animation");
$.ajax({
url: "http://jsbin.com/ibebiv",
method: "GET",
success: function(data) {
$("#content").append(data);
display("ajax done");
ajaxDone = true;
checkDone();
},
error: function() {
ajaxFailed = true;
checkDone();
}
});
$("#box").animate({
left: "+200px"
}, function() {
display("animation done");
animationDone = true;
checkDone();
});
function checkDone() {
if ((ajaxDone || ajaxFailed) && animationFlag) {
display("<strong>All done</strong>");
}
}
}
function display(msg) {
$("<p>").html(msg).appendTo("#content");
}
});
ajax呼び出しが失敗した場合に備えて、エラー処理に注意してください。