history 객체 : 사용자가 접근한 페이지기록을 가지고 있음


window.history.back() : 히스토리 기준 뒤로가기

window.history.go(-1) 와 동일한 기능


window.history.forward() : 히스토리 기준 앞으로 가기

window.history.go(1) 와 동일한 기능

히스토리 엔트리 추가 및 변경


history.pushState(state,title,URL) : history에 URL이 적힌 부분을 추가하는 함수



pushState를 이용한 뒤로가기 막기

1
2
3
4
5
6
7
<script>
history.pushState(nullnulllocation.href); 
window.onpopstate = function(event
history.go(1); 
}
</script>
 
cs



'프로그래밍 > JSP, Spring, HTML5' 카테고리의 다른 글

(Spring)XML을 이용한 DI 설정(2)  (0) 2016.07.10
(Spring)XML을 이용한 DI 설정(1)  (0) 2016.07.10
(spring) 스프링 컨테이너 종류  (0) 2016.07.10
(JSP) 기초 정리  (0) 2016.07.10
(JSP) 게시판  (0) 2016.07.10

+ Recent posts