window.history.속성
history.속성.메소드
history 객체의 메소드
메소드 |
설명 |
back() | 이전 페이지로 돌아감, '뒤로' 이동 아이콘과 같은 역활 |
forward() | 한 페이지 다음으로 이동, '앞으로'이동 아이콘과 같은 역활 |
go(n) | n단계만큼 이동 go(숫자):히스토리 목록에서 정수만큼 뒤에있는 URL로이동 go(문자열): 히스토리 목록애서 문자열을 포함하는 URL로 이동 |
go(0) | 새로고침과 같음 |
go(1) | history.forward()와 같음 |
go(-1) | history.back()과 같음 |
- <html>
- <head>
- <title> window_test </title>
- <script language="JavaScript">
- <!--
- document.write(history.length)
- -->
- </script>
- </head>
- <body>
- <form>
- <input type="button" value="이전" onClick="history.back()"><br>
- <input type="button" value="다음" onClick="history.forward()"><br>
- <input type="button" value="5단계 이전" onClick="history.go(-5)"><br>
- <input type="button" value="5단계 다음" onClick="history.go(+5)"><br>
- </form>
- </body>
- </html>
반응형
'웹프로그래밍 > javascript' 카테고리의 다른 글
javascript - String 객체 (0) | 2011.03.01 |
---|---|
javascript - location 객체 (0) | 2011.03.01 |
javascript - navigator (0) | 2011.03.01 |
javascript - anchor (0) | 2011.02.28 |
javascript - document 객체 (0) | 2011.02.28 |