x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function goBack() {
8
window.history.go(-2)
9
}
10
</script>
11
</head>
12
<body>
13
14
<input type="button" value="后退2页" onclick="goBack()">
15
<p>注意,点击“后退2页”按钮将不会导致任何行动,因为以前的历史列表中没有URL。</p>
16
17
</body>
18
</html>