x
1
2
<html>
3
<head>
4
<script>
5
function goForward() {
6
window.history.forward()
7
}
8
</script>
9
</head>
10
<body>
11
12
<input type="button" value="前进" onclick="goForward()">
13
14
<p>注意,点击这里的前进按钮不会导致任何行动,因为历史列表中没有下一个URL。</p>
15
16
</body>
17
</html>