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.
「アンロード」イベントが発生したときにユーザーを切断しようとしています!
$(window).bind('unload', function() { $.ajax({ url: "deconnexionUser.php", async: false }); });
それは機能しますが、「async : false」を使用したくありません!
私は何をすべきか ?
閉じられている Web ページで非同期イベントを開始できないため、リクエストを送信している間はブラウザーをブロックする必要があります。
非同期にしたい理由はありますか?
を使用beforeunloadすると、ウィンドウを閉じることと競合しません。
beforeunload
$(window).bind('beforeunload', function() { $.ajax({ url: "deconnexionUser.php" }); });