1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| function btnSendMsg(){ $.ajax({ url: "{:U('forgetPasswordBySMS')}", type: "GET", async: true, data: {username: $("#hiddenUsername-readyToSendMsg").val()}, dataType: "json", timeout: 10000, success: function(data){ if(data.status=='success'){ $("#readyToSendMsg").modal('close'); $("#hiddenUsername-resetPasswordBySMSbtn").attr('value',data.username); $("#phone-resetPasswordBySMSbtn").html(data.phone); $("#resetPasswordBySMSbtn").modal({ width: 500, height:400, closeViaDimmer: 0 }) $("#resetPasswordBySMSbtn").modal('open'); timeCountDown(); } else { alert(data.message); } }, error: function(XMLHttpRequest, textStatus, errorThrown) { if(textStatus=="timeout"){ alert("请求超时,请检查网络连接设置"); } } }) }
function btnSendMsgAgain(){ timeCountDown(); $.ajax({ url: "{:U('forgetPasswordBySMS')}", type: "GET", async: true, data: {username: $("#hiddenUsername-readyToSendMsg").val()}, dataType: "json", timeout: 10000, success: function(data){ if(data.status=='success'){ } else { alert(data.message); } }, error: function(XMLHttpRequest, textStatus, errorThrown) { if(textStatus=="timeout"){ alert("请求超时,请检查网络连接设置"); } } }) } var wait=60; function timeCountDown(){ if (wait == 0) { $("#getVerifyCodeAgain").removeAttr("disabled"); $("#getVerifyCodeAgain").html("发送验证码"); wait = 60; } else { $("#getVerifyCodeAgain").attr("disabled", true); $("#getVerifyCodeAgain").html("重新发送(" + wait + ")"); wait--; setTimeout(function() { timeCountDown(); },1000) } }
|