ユーザーが放置しようとしたときにコードを実行する必要があるのは、ファイルを削除する必要があることを知らせるサーバーへの単純な呼び出しであり、応答はしませんが、 tコール。アンロード機能でAJAX呼び出しを実行
$(window).unload(function(){
alert(1)
window.key = document.getElememtsByTagName('body')[0].getAttribute('key');
catcher('clearBt');//The catcher makes the AJAX call like i show below.
});
//This is the call to the server.
phone.open(method, address, true);
phone.setRequestHeader("Content-type", 'application/x-www-form-urlencoded');
phone.send(reqStr);
私はにonbeforeunloadてみてくださいましたが、結果は同じだった...
ありがとうこの方法で解決しましたか?警報の後にセミコロンが必要です(1)。 – Chocula
私は何も問題がありません... – hidura