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

JavaScript ? ??

JavaScript Window History

window.history ???? ???? ??? ???? ????.

Window History

window.history ??? ??? ? ? ???? ??? ??? ????.

??? ?? ??? ???? ?? ? ??? ????? JavaScript? ??? ?????.

?? ??:

history.back() - ?????? ?? ??? ???? ?? ?????. ?? ???? ?? URL? ?????.

??? ?????? ?? ??? ???? ?? ????:

???? ?? ?? ???:

<html>
<mate charset="utf-8">
<head>
<script>
function goBack()
  {
  window.history.back()
  }
</script>
</head>
<body>
<input type="button" value="返回" onclick="goBack()">
</body>
</html>

Window History Forward

history forward() ???? ?? ???? ?? URL? ?????. ??? ?????? ??? ??? ???? ?? ????:

???? ??? ??? ????:

<html>
<mate charset="utf-8">
<head>
<script>
function goForward() 
 { 
  window.history.forward() 
   }
</script>
</head>
<body>
  <input type="button" value="下頁" onclick="goForward()">
</body>
</html>

???? ??
||
<html> <mate charset="utf-8"> <head> <script> function goBack() { window.history.back() } </script> </head> <body> <input type="button" value="返回" onclick="goBack()"> </body> </html>