window.history.forward()怎么应用的?
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/jscript">
function goforward(){
window.histroy.go(1);
}
</script>
</head>
<body>
点击下面的锚点链接,添加历史列表项:</br>
<a href="settimeout.html">第一个锚点</a></br>
<a href="1.html">第二个锚点</a></br>
<input type="button" value="返回下一个页面" onclick="goforward()"/>
</body>
</html>
点击“第一锚点”跳转到settimeout.html页面,然后后退到原页面,点击”返回下一页面“没有反应,为什么?