倒计时(手写系列) 陈进步 2022-02-24 205 阅读1分钟 function countdown(total,fun){ let num = total let timer = setInterval(function(){ num-- if(num<0){ clearInterval(timer) fun() } },1000) }