ブラウザが閉じられるときにいくつかの機能を実装しました。
window.onbeforeunload = function (evt) {
evt = (evt)? evt:event;
clickY = evt.clientY;
altKey = evt.altKey;
keyCode = evt.keyCode;
if (altKey == true && keyCode == 0){
//Make call to the server to clear the cache
}else if(clickY < 0){
//Make a call to the server to clear the cache
}else {
return;
}
};
上記のコードの問題は、アドレスバーをクリックしてEnterキーを押すか、更新ボタンでページを更新したときに、コードがアラート( "21112")を表示することです。ブラウザが閉じている場合。誰かがこれを達成するのを手伝ってくれますか。