일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안스
- 리팩터링
- JDK 8
- 안드로이드 스튜디오
- 자바스크립트
- 시작
- 코드업
- 설정
- python
- CodeUP
- 버튼 이벤트
- JavaScript
- java
- Android Studio
- 2차원 리스트
- 파이썬
- 출력
- 변경
- 자바
- 설치
- spring boot
- 에러
- 27G2
- r
- 반복문
- 예제
- 점심
- 맛집
- 안드로이드
- 방법
Archives
- Today
- Total
기루 기룩 기록
뒤로가기 방지 본문
반응형
보안상 사용자와 client의 상호작용이 없으면 적용되지 않음
function noBack() {
history.pushState('preventLocation', document.title, '#');
if (typeof window.addEventListener != 'undefined') {
window.addEventListener('popstate', clearHistory);
} else if (typeof window.attachEvent != 'undefined') {
window.attachEvent('popstate', clearHistory);
} else {
window.onpopstate = clearHistory;
}
};
function clearHistory() {
history.pushState('popstateFunction', document.title, '#');
};
반응형