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