实现页面的后退、刷新、前进
<html>
<head>
<title>实现页面的后退、刷新、前进</title>
<script language="javascript">
function back()
{
history.go(-1); //后退1页
}
function forward()
{
history.go(+1); //前进1页
}
function refresh()
{
history.go(-0) //刷新
}
</script>
</head>
<body>
<input type=button value=后退 onclick="back()">
<input type=button value=刷新 onclick="refresh()">
<input type=button value=前进 onclick="forward()">
<br/><p>内容</p>
</body>
</html>
时间: 2024-09-22 13:33:38