要在历史记录列表中加载下一个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>