xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<script>
function goBack()
{
window.history.back()
}
</script>
</head>
<body>
<input type="button" value="Back" onclick="goBack()">
<p>注意,点击后退按钮在这里不会导致任何行动,因为以前的历史列表中没有该URL</p>
</body>
</html>