브라우저 상에서 뒤로가기 버튼을 눌렀을 때 나타난 화면에서 refresh해주기
1 2 3 4 5 6 7 8 9 | window.addEventListener( "pageshow", function ( event ) { var historyTraversal = event.persisted || ( typeof window.performance != "undefined" && window.performance.navigation.type === 2 ); if ( historyTraversal ) { // Handle page restore. window.location.reload(); } }); | cs |
'JS' 카테고리의 다른 글
button auto click (0) | 2018.08.12 |
---|---|
Javascript Object length 객체 길이 (0) | 2018.08.10 |
TypeError: Path must be a string. Received undefined TypeError: Cannot read property 'file' of undefined (0) | 2018.08.03 |
Modal에 값 전달 (0) | 2018.08.02 |
실시간으로 생긴 태그 클릭 안될 때 (0) | 2018.07.30 |