【JS】:JSはページの更新、後退、前進を実現します.


history.go()を通じてhistory.go(-1)を完成します.history.go(0)を後退させる.history.go(1)を更新します.前へ進む
この3つのメッセージに3つのボタンで応答すればいいです.
<html>
<body>
<p>         </p>
<script> function back(){ history.go(-1); } function forward(){ history.go(+1); } function refresh(){ history.go(0); } </script>
<input type=button value=   onclick ="back()">
<input type=button value=   onclick ="forward()">
<input type=button value=   onclick ="refresh()">
<body>
</html>