DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery ajax的success回調函數中實現按鈕置灰倒計時
jquery ajax的success回調函數中實現按鈕置灰倒計時
編輯:JQuery特效代碼     
主要是實現異步手機發送短信成功之後在ajax的success回調中實現將發送按鈕置灰並倒計時,剛開始一直報js錯誤,問題可能出在於調用ajax之後this被更新,隨意在這之前先把this對象賦給一個變量就沒問題

按鈕倒計時代碼
. 代碼如下:
var wait = 60;
get_code_time = function (o) {
if (wait == 0) {
o.removeAttribute("disabled");
o.value = "免費獲取驗證碼";
wait = 60;
} else {
o.setAttribute("disabled", true);
o.value = "(" + wait + ")秒後重新獲取";
wait--;
setTimeout(function() {
get_code_time(o)
}, 1000)
}
}

獲取手機短信之後調用get_code_time函數代碼
. 代碼如下:
//重新獲取驗證碼
$('#codeagain').click(function() {
var o = this;
$.ajax({
url:"Tea_sendCode.action?jsoncallback=?",
type:"post",
data: {accountId:accountId},
dataType: "json",
success: function (data) {
if(data.status == 1 && data.code == 200){
alert("驗證碼已發送至您的手機");
get_code_time(o);
} else {

if(data.msg != ""){
alert(data.msg);
} else {
alert("短信驗證碼發送失敗");
}
}
},
error: function (data) {
if(data.status == 0) {
alert(data.msg);
} else {
alert("短信驗證碼發送失敗");
}
}
});
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved