Authored by 毕凯

绑定中优化

... ... @@ -28,7 +28,7 @@ function nextStep(url, mobileNo, areaCode) {
}
requested = true;
$btnNext.html('绑定中');
$btnNext.addClass('disable').html('绑定中...');
$.ajax({
type: 'POST',
... ... @@ -44,7 +44,7 @@ function nextStep(url, mobileNo, areaCode) {
},
error: function() {
tip.show('出错了,请重试!');
$btnNext.html('下一步');
$btnNext.removeClass('disable').html('下一步');
requested = false;
}
});
... ...