자바스크립트
-
[JavaScript] 새로고침, 뒤로가기 시 데이터 값 유지JavaScript 2021. 5. 7. 16:36
window.onpageshow = function (event) { // 새로고침: window.performance.navigation.type == 1 // 뒤로가기: window.performance.navigation.type == 2 if (event.persisted || (window.performance && (window.performance.navigation.type == 1 || window.performance.navigation.type == 2))) { // 현재 브라우저에서 WebStorage를 지원할 때 if (('sessionStorage' in window) && window['sessionStorage'] !== null) { // sessionStorage로 데이터..