Front-End - Main Menu/html5 + CSS3 + JavaScript (종합 예제)

ex10_12 - history객체

ITRecipe 2023. 2. 28. 11:24
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>history객체</title>
</head>
<body>

<h3>history 객체 활용</h3>
<hr/>

<button type="button" onclick="history.back()">back</button> <!-- go(-1) -->
<button type="button" onclick="history.forward()">forward</button> <!-- go(1) -->
<button onclick="history.go(-1)">go(-1)</button> <!-- back() -->
</body>

</body>
</html>

'Front-End - Main Menu > html5 + CSS3 + JavaScript (종합 예제)' 카테고리의 다른 글

ex10 - let 변수 선언  (1) 2023.02.28
ex10 - var  (0) 2023.02.28
ex10_11 - screen 객체  (0) 2023.02.28
ex10_09 - location객체  (0) 2023.02.28
ex10_08 - print전, 후 이벤트 리스너  (0) 2023.02.28