Last Update 2009/03/29
TOP - JavaScript - Window - setInterval()
指定時間ごとに指定のコードを実行します。
戻り値1 = オブジェクト1 .setInterval( 値1 , 値2 )
戻り値1
この関数の実行時のid
clearInterval()に実行時のidを指定することで、処理を中止することが可能
clearInterval()に実行時のidを指定することで、処理を中止することが可能
オブジェクト1
対象となるWindowオブジェクト
値1
時間経過ごとに実行されるJavaScriptコード
値2
コードを実行する時間間隔(ミリ秒)
(例)
<SCRIPT type="text/javascript">
<!--
var w1;
function btnclick()
{
w1 = window.open("", "", "height=150,width=200");
w1.moveTo(200,200);
w1.document.write("2秒ごとに文字を追加します → 10秒で閉じます<br>\n");
w1.setInterval("document.write('●');", 2000);
w1.setTimeout("close();", 10000);
}
//-->
</SCRIPT>