Notice
Recent Posts
Recent Comments
Link
목록setTimeout (1)
이야기앱 세상
setTimeout 사용시 Uncaught TypeError: Illegal invocation이 발생할 경우
setTimeout 사용시 Uncaught TypeError: Illegal invocation이 발생할 경우 setTimeout(function,delay)는 지정한 시간이후 매개변수로 전달되는 함수를 실행하는 함수이다. 1. 함수명을 setTimeout의 매개변수에 지정해서 사용할 수 있다. function check(){ alert("실행"); } setTimeout(check,300); 2. 익명함수를 setTimeout의 매개변수에 지정해서 사용할 수 있다. setTimeout(function(){ alert("실행"); },300); 3. 화살표 함수를 이용해서 지정 setTimeout(()=>alert("실행"),3000); 4. setTimeout 사용시 Uncaught TypeError:..
IT/JavaScript
2022. 1. 4. 22:15