1. 程式人生 > >JavaScript 短信驗證碼定時器

JavaScript 短信驗證碼定時器

rip func ram run set 循環 disabled nbsp blog

/**
 * 定時循環
 * @param i 循環次數
 */
function runCodeTime(i)
{
	var codeButton = $("#codeButton");
	if(i<90)
        {
		i+=1;
		codeButton.html((90-i)+"秒重發");
		setTimeout("runCodeTime("+i+")", 1000);
		codeButton.attr("disabled",true);
	}else{
		codeButton.html("重新獲取");
		codeButton.attr("disabled",false);
	}
}    

  

JavaScript 短信驗證碼定時器