我得到了这个html文件,它本来应该让用户返回一个网站(在它无法正常工作之后将其外包)。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function goBack() {
history.back();
}
</script>
</head>
<body onload="history.back()">
</body>
</html>
知道原因是什么?
答案 0 :(得分:2)
查看Window.history article on MDN,找出window.history
的一些细微差别。 HTML5 History API为开发人员提供了一些与modifying/tweaking the user's history相关的新玩具。
如果您访问的网站没有按预期工作,那么该网站上运行的JS很有可能会改变您的浏览器历史记录。