参考
<メソッドの結果を次のメソッドが受け取る>
$("#ajax-test3").on("click", function () { $.Deferred().resolve() .then(function () { return $.ajax("https://api.github.com/repositories"); }) .then(function (res1) { console.log(res1) return $.ajax("https://api.github.com/users"); }) .then(function (res2) { console.log(res2) }); });