Loose-Info.com
Last Update 2009/03/29
TOP - JavaScript - Window - history

Historyオブジェクトへの参照となるプロパティです。


オブジェクト1 .history

オブジェクト1
対象となるWindowオブジェクト


(例)
<SCRIPT type="text/javascript"> <!-- var w1; function btnclick() { w1 = window.open("window_history_test1.html", "", "height=100,width=400"); w1.moveTo(200,300); } function btnclick2() { w1.history.back(); w1.focus(); } //--> </SCRIPT>

window_history_test1.html
<html> <head> <title>test1</title> </script> </head> <body> <a href="window_history_test2.html">次へ進む →</a> </form> </body> </html>
window_history_test2.html
<html> <head> <title>test2</title> </script> </head> <body> 呼び出し側ウィンドウの[戻る]ボタンを押してください </form> </body> </html>