페이지 새로 고침이나 브라우저 닫기에 의해 트리거되는 경우 ONUNLOAD 이벤트는 두 동작을 구별하는 데 어려움을 겪습니다. .
이 문제를 해결하기 위해 다음 솔루션은 HTML5 로컬 저장소와 클라이언트/서버 AJAX 통신을 활용합니다.
<code class="javascript">function myLoad(event) { if (window.localStorage) { var t0 = Number(window.localStorage['myUnloadEventFlag']); if (isNaN(t0)) t0=0; var t1=new Date().getTime(); var duration=t1-t0; if (duration<10*1000) { // It's a browser reload } else { // It's a browser close } } }</code>
<code class="javascript">function myUnload(event) { if (window.localStorage) { // Flag the page as unloading window.localStorage['myUnloadEventFlag']=new Date().getTime(); } // Notify the server to disconnect the user in a few seconds askServerToDisconnectUserInAFewSeconds(); }</code>
위 내용은 onUnload 이벤트에서 페이지 새로 고침과 브라우저 닫기를 어떻게 구별합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!