function count(wait) { function time() { if (wait == 0) { //倒计时完成以后进行操作 } else { $("#varifyCode").show().text(wait + "s");//显示倒计时数字 wait--; setTimeout(function () { time(); }, 1000) } } time(); } count(60);
function count(wait) { function time() { if (wait == 0) { //倒计时完成以后进行操作 } else { $("#varifyCode").show().text(wait + "s");//显示倒计时数字 wait--; setTimeout(function () { time(); }, 1000) } } time(); } count(60);