히스토리 목록에서 다음 URL을 로드하려면 JavaScript에서 history.next() 메소드를 사용하십시오.
예시
다음 코드를 실행하여 다음 URL을 로드할 수 있습니다. -
<!DOCTYPE html>
<html>
<body>
<script>
function nextPage() {
window.history.next()
}
</script>
<input type = "button" value = "Next URL" onclick = "nextPage()">
</body>
</html>