87,995
社区成员
发帖
与我相关
我的任务
分享function sendCount(nowNum){
if(nowNum> 0){
nowNum--;
$("#send").html(nowNum);
setTimeout(function(){sendCount(nowNum)}, 1000);
}else{
alert('倒计时结束了');
}
}