Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、datepicker が埋め込まれたモーダル ダイアログが表示されます。
そしてajax呼び出し。
$( "#dialog-form" ).dialog( "open" ); $.ajax({ url:'somewhere.php', type:'POST', data:something, });
ダイアログが閉じられるまでajax呼び出しを待つ方法はありますか?
これは、ダイアログ定義の close オプションを使用して行うことができます。
$("#dialog-form").dialog({ close: function () { //ajax call here } });