您好,登錄后才能下訂單哦!
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>定時發送驗證碼</title> <script type="text/javascript"> var wait = 5; function send(o) { if(wait==5){ //向服務器發送請求,給手機發送驗證碼 // $.post("<%=path%>/simple/user/sendCode/mobile", // { // "mobile" : "${user.mobile}", // "number" : 2 // }, // function(data) { // if(data,message=="success"){ // alert("驗證碼發送成功,請注意查收!"); // }else{ // alert("驗證碼發送失敗,請稍后重試!"); // } // }); } if (wait == 0) { o.removeAttribute("disabled"); o.value = "手機獲取"; wait = 5; } else { o.setAttribute("disabled", true); o.value = wait + "s后可重新發送"; wait--; setTimeout(function() { send(o); }, 1000) } } </script> </head> <body> <label for="mobile">手機號:</label> <input id="mobile" /> <input type="submit" class="sub_verify" onclick="send(this);" value="手機獲取" /> </html>
效果:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。