웹프로그래밍/javascript

javascript - history 객체

zelkova 2011. 3. 1. 21:04


window.history.속성
history.속성.메소드


history 객체의 메소드

 메소드

 설명

 back()  이전 페이지로 돌아감, '뒤로' 이동 아이콘과 같은 역활
 forward()  한 페이지 다음으로 이동, '앞으로'이동 아이콘과 같은 역활
 go(n)  n단계만큼 이동
go(숫자):히스토리 목록에서 정수만큼 뒤에있는 URL로이동
go(문자열): 히스토리 목록애서 문자열을 포함하는 URL로 이동
 go(0) 새로고침과 같음
 go(1)  history.forward()와 같음
 go(-1)  history.back()과 같음


  1. <html>
  2. <head>
  3. <title> window_test </title>
  4. <script language="JavaScript">
  5. <!--
  6. document.write(history.length)
  7. -->
  8. </script>

  9. </head>

  10. <body>
  11. <form>
  12. <input type="button" value="이전" onClick="history.back()"><br>
  13. <input type="button" value="다음" onClick="history.forward()"><br>
  14. <input type="button" value="5단계 이전" onClick="history.go(-5)"><br>
  15. <input type="button" value="5단계 다음" onClick="history.go(+5)"><br>

  16. </form>
  17. </body>
  18. </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