히스토리 객체LOGIN

히스토리 객체

history 개체

  • length: 기록 레코드 수

  • go(n): "앞으로"와 "뒤로"를 동시에 구현할 수 있습니다.

  • history. go(0) 웹페이지 새로고침

  • history.go(-1) 뒤로

  • History.go(1) 한걸음 앞으로

  • history.go(3) 세걸음 앞으로

  • forward(): 브라우저의 "앞으로" 버튼과 동일

  • back(): 브라우저의 "뒤로" 버튼과 동일

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
    </head>
    <body >
    <a href="http://www.php.cn">php中文网</a>
    <input type="button" value="前进一步" onclick="history.go(1)">
    </body>
</html>


다음 섹션
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> </head> <body > <a href="http://www.php.cn">php中文网</a> <input type="button" value="前进一步" onclick="history.go(1)"> </body> </html>
코스웨어