xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<script>
function goBack()
{
window.history.go(-2)
}
</script>
</head>
<body>
<input type="button" value="Go 2 pages back" onclick="goBack()">
<p>注意,点击“后退2页”按钮将不会导致任何行动,因为以前的历史列表中没有URL。</p>
</body>
</html>