js 타이머 일회 성과 여러 번

591 단어 js



    
    Title




   var time1= window.setInterval(fun1,3000);//     
    function fun1(){
        alert("this is timer1")
    }
    function fun2() {
        alert("this is timer2")
    }
    var b1=document.querySelector("#b1");
   b1.addEventListener("click",clear);
    function clear() {
        window.clearInterval(time1);
        console.log("the timer1 was stoped,the timer2 is starting");
        window.setTimeout(fun2,5000);//     
    }



좋은 웹페이지 즐겨찾기