Showing
1 changed file
with
2 additions
and
2 deletions
@@ -28,7 +28,7 @@ function nextStep(url, mobileNo, areaCode) { | @@ -28,7 +28,7 @@ function nextStep(url, mobileNo, areaCode) { | ||
28 | } | 28 | } |
29 | 29 | ||
30 | requested = true; | 30 | requested = true; |
31 | - $btnNext.html('绑定中'); | 31 | + $btnNext.addClass('disable').html('绑定中...'); |
32 | 32 | ||
33 | $.ajax({ | 33 | $.ajax({ |
34 | type: 'POST', | 34 | type: 'POST', |
@@ -44,7 +44,7 @@ function nextStep(url, mobileNo, areaCode) { | @@ -44,7 +44,7 @@ function nextStep(url, mobileNo, areaCode) { | ||
44 | }, | 44 | }, |
45 | error: function() { | 45 | error: function() { |
46 | tip.show('出错了,请重试!'); | 46 | tip.show('出错了,请重试!'); |
47 | - $btnNext.html('下一步'); | 47 | + $btnNext.removeClass('disable').html('下一步'); |
48 | requested = false; | 48 | requested = false; |
49 | } | 49 | } |
50 | }); | 50 | }); |
-
Please register or login to post a comment