history對象
history對象
length:歷史記錄的個數(shù)
go(n):同時可以實現(xiàn)“前進”和“后退。”
history.go(0) 刷新網(wǎng)頁
history.go(-1) 后退
history.go(1) 前進一步
history.go(3) 前進三步
forward():相當于瀏覽器的“前進”按鈕
back():相當于瀏覽器的“后退”按鈕
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> </head> <body > <a href="http://ipnx.cn">php中文網(wǎng)</a> <input type="button" value="前進一步" onclick="history.go(1)"> </body> </html>