亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

history object

history object

  • length: the number of historical records

  • go( n): "Forward" and "Backward" can be realized at the same time.

  • history.go(0) Refresh the web page

  • history.go(-1) Go back

  • history.go(1) Go one step forward

  • history.go(3) Go forward three Step

  • forward(): Equivalent to the browser's "forward" button

  • back(): Equivalent to Browser's "Back" button

<!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="前進(jìn)一步" onclick="history.go(1)">
    </body>
</html>


Continuing Learning
||
<!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="前進(jìn)一步" onclick="history.go(1)"> </body> </html>
submitReset Code