//发送短信后,进行计时
function countSMS(totalcount){
if(--totalcount>0){
setTimeout("countSMS("+totalcount+")",1000);
$("#scount").html(totalcount);
}
else{
$("#mobileSMS").show();
$("#sms_send_code").hide();
}
}
//发送短信后,进行计时
function countSMS(totalcount){
if(--totalcount>0){
setTimeout("countSMS("+totalcount+")",1000);
$("#scount").html(totalcount);
}
else{
$("#mobileSMS").show();
$("#sms_send_code").hide();
}
}