用于一些注冊(cè)類的場(chǎng)景,點(diǎn)擊發(fā)送驗(yàn)證碼,xx秒后重新發(fā)送。

利用 setTimeout 方法,xx秒后執(zhí)行指定的方法,修改button的屬性值,disabled為true時(shí)為灰色,不可點(diǎn)擊。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>-->
<script type="text/javascript">
var countdown=60;
function settime(obj) {
if (countdown == 0) {
obj.removeAttribute("disabled");
obj.value="獲取驗(yàn)證碼";
countdown = 60;
return;
} else {
obj.setAttribute("disabled", true);
obj.value="重新發(fā)送(" + countdown + ")";
countdown--;
}
setTimeout(function() {
settime(obj);
}
,1000);
}
</script>
<body>
<label>
<input type="text" name="textfield">
</label>
<input type="button" id="btn" value="獲取驗(yàn)證碼" onclick="settime(this)" />
</body>
</html>
分享名稱:JS實(shí)現(xiàn)點(diǎn)擊發(fā)送驗(yàn)證碼xx秒后重新發(fā)送功能-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://chinadenli.net/article4/dhsooe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷推廣、做網(wǎng)站、定制開發(fā)、商城網(wǎng)站、靜態(tài)網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容