<html> <head> <title>使用history对象</title> </head> <body> 使用history对象访问浏览历史<br> <br> <form> <Input type="button" Value="后退到上一个历史记录" onClick="history.go(-1)"> <br> <br> <Input type="button" Value="前进到下一个历史记录" onClick="history.go(1)"> <br> <br> <Input type="button" Value="刷新本页面" onClick="history.go(0)"> </form> </body> </html>