为什么每提交一次,显示结果+1
每提交一次,显示结果+1,到底是为什么
window.history.length 是指本页面浏览历史,还是整个浏览器的浏览历史
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>History对象</title>
</head>
<script type="text/javascript">
var HL = window.history.length ;
document.write(HL);
</script>
<body>
</body>
</html>