history對(duì)象
history物件
length:歷史記錄的數(shù)量
- ##go( n):同時(shí)可以實(shí)現(xiàn)「前進(jìn)」與「後退?!?p>
- #history.go(0) ?刷新網(wǎng)頁(yè)
history.go(-1) ?後退
?history.go(1) ??前進(jìn)一步
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> </head> <body > <a href="http://miracleart.cn">php中文網(wǎng)</a> <input type="button" value="前進(jìn)一步" onclick="history.go(1)"> </body> </html>#########