history對象
history物件
length:歷史記錄的數量
- ##go( n):同時可以實現「前進」與「後退。」
- #history.go(0) 刷新網頁
history.go(-1) 後退
history.go(1) 前進一步
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> </head> <body > <a href="//m.sbmmt.com">php中文网</a> <input type="button" value="前进一步" onclick="history.go(1)"> </body> </html>#########