Window setInterval() Method
Click the button to wait 3 seconds, then alert "Hello". After clicking away the alert box, an new alert box will appear in 3 seconds. This goes on forever...
setInterval(function(){ alert("Hello"); }, 3000);
Parameter | Description |
function | Required. The function that will be executed |
milliseconds | Required. The intervals (in milliseconds) on how often to execute the code. If the value is less than 10, the value 10 is used |
param1, param2, ... | Optional. Additional parameters to pass to the function (Not supported in IE9 and earlier) |
잘 사용하면 아주 아름다운 코드를 짤 수 있지만, 마음만 먹으면 공포 그 자체를 만들 수 있는 메서드이기도 하다.
Related Pages
- Window Object: clearInterval() Method
- Window Object: setTimeout() Method
- Window Object: clearTimeout() Method
'Web Development > JavaScript' 카테고리의 다른 글
자바스크립트로 버튼 클릭시 순서대로 숫자 호출방법 (0) | 2021.07.17 |
---|---|
JQuery 학습사이트 - 제이쿼리를 공부할 때 유용한 사이트 (1) | 2021.07.17 |
JavaScript(JQuery) 선별선택자·복수선택자 (0) | 2021.07.17 |
Onclick Event(온클릭 이벤트) (0) | 2021.07.17 |
[JavaScript] 버튼 클릭 제어 (0) | 2021.07.17 |
Simple Slider(JQuery) 심플한 슬라이더 (0) | 2021.07.17 |
제이쿼리를 해야하는 이유 (0) | 2021.07.17 |
탑버튼(topbtn) DOM 위치값 계산 (0) | 2021.07.17 |