87,997
社区成员




function sendCount(nowNum){
if(nowNum> 0){
nowNum--;
$("#send").html(nowNum);
setTimeout(function(){sendCount(nowNum)}, 1000);
}else{
alert('倒计时结束了');
}
}