倒计时(手写系列)

200 阅读1分钟
function countdown(total,fun){
    let num = total
    let timer = setInterval(function(){
        num--
        if(num<0){
            clearInterval(timer)
            fun()
	}
    },1000)
}