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>