国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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)一步

######history.go(3) ??前進(jìn)三步驟##################forward():相當(dāng)於瀏覽器的「前進(jìn)」按鈕############back():相當(dāng)於瀏覽器的「後退」按鈕#########
<!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>
#########
繼續(xù)學(xué)習(xí)
||
<!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>
提交重置程式碼