Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mobile_reg.js 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. $(function () {
  2. $("input[name=mobile]").keyup(function(event){
  3. var mobile = $(this).val();
  4. if (11 == mobile.length && 32 <= event.keyCode) {
  5. $('#vertify_div').css('display','block');
  6. }
  7. });
  8. $("input[name=mobile_vertify]").keyup(function(event){
  9. var mobile_vertify = $(this).val();
  10. if (4 <= mobile_vertify.length && 32 <= event.keyCode) {
  11. send_mobile_code();
  12. }
  13. });
  14. })
  15. function send_mobile_code() {
  16. var mobile = $("input[name=mobile]").val();
  17. // 手机号是否为空
  18. if (!mobile) {
  19. $("input[name=mobile]").focus();
  20. layer.msg('请输入手机号码!', {time: 1500});
  21. return false;
  22. }
  23. // 手机格式不正确
  24. var reg = /^1[0-9]{10}$/i;
  25. if (!reg.test(mobile)) {
  26. $("input[name=mobile]").focus();
  27. layer.msg('请输入正确的请输入手机号码!', {time: 1500});
  28. return false;
  29. }
  30. $('#vertify_div').css('display','block');
  31. var mobile_vertify = $("input[name=mobile_vertify]").val();
  32. if (!mobile_vertify) {
  33. return false;
  34. }
  35. // 设置为不可点击
  36. $("#mobile_code_button").val('获取中…').attr('disabled', 'disabled');
  37. var __mobile_1_token__ = $('input[name=__mobile_1_token__]').val();
  38. $.ajax({
  39. url: __root_dir__+'/index.php?m=api&c=Ajax&a=SendMobileCode&_ajax=1',
  40. // source:2 登录 source:0 注册
  41. data: {type:'users_mobile_reg', mobile:mobile, is_mobile:true, title:'账号注册', source:0,IsVertify:1, vertify:mobile_vertify, __mobile_1_token__:__mobile_1_token__},
  42. type:'post',
  43. dataType:'json',
  44. success:function(res){
  45. if (res.code == 1) {
  46. code_countdown();
  47. layer.msg(res.msg, {time: 1500});
  48. } else {
  49. $("#mobile_code_button").val('获取验证码').removeAttr("disabled");
  50. layer.alert(res.msg, {icon: 2, title: false, closeBtn: 0});
  51. }
  52. },
  53. error : function() {
  54. $("#mobile_code_button").val('获取验证码').removeAttr("disabled");
  55. layer.alert('发送失败,请尝试重新发送!', {icon: 5, title: false, closeBtn: 0});
  56. }
  57. });
  58. }
  59. function mobile_fleshVerify(){
  60. var src = __root_dir__+'/index.php?m=api&c=Ajax&a=vertify&type=users_mobile_reg';
  61. if (src.indexOf('?') > -1) {
  62. src += '&';
  63. } else {
  64. src += '?';
  65. }
  66. src += 'r='+ Math.floor(Math.random()*100);
  67. $('#mobile_imgVerifys').attr('src', src);
  68. $.ajax({
  69. async:false,
  70. url: __root_dir__+'/index.php?m=api&c=Ajax&a=get_token&name=__mobile_1_token__',
  71. data: {_ajax:1},
  72. type:'GET',
  73. dataType:'html',
  74. success:function(res1){
  75. $('input[name=__mobile_1_token__]').val(res1);
  76. },
  77. error : function(e) {
  78. layer.closeAll();
  79. layer.alert(e.responseText, {icon: 5, title:false});
  80. }
  81. });
  82. }
  83. function code_countdown(){
  84. // 倒计时
  85. var setTime;
  86. var time = 120;
  87. setTime = setInterval(function() {
  88. if(0 >= time) {
  89. clearInterval(setTime);
  90. return false;
  91. }
  92. time--;
  93. $("#mobile_code_button").val(time + '秒').attr('disabled', 'disabled');
  94. if(time == 0) $("#mobile_code_button").val('获取验证码').removeAttr("disabled");
  95. }, 1000);
  96. }
  97. function checkMobileUser1649732103() {
  98. var mobile = $('#theMobileForm input[name=mobile]');
  99. var mobile_code = $('#theMobileForm input[name=mobile_code]');
  100. if (mobile.val() == '') {
  101. layer.msg('手机号不能为空!', {
  102. time: 1500
  103. });
  104. mobile.focus();
  105. return false;
  106. }
  107. if (mobile_code.val() == '') {
  108. layer.msg('验证码不能为空!', {
  109. time: 1500
  110. });
  111. mobile_code.focus();
  112. return false;
  113. }
  114. layer_loading('正在处理');
  115. $.ajax({
  116. url: __root_dir__+'/index.php?m=user&c=Users&a=mobile_reg',
  117. data: $('#theMobileForm').serialize(),
  118. type: 'post',
  119. dataType: 'json',
  120. success: function(response) {
  121. layer.closeAll();
  122. var res = response.data;
  123. if (res.status == 0) {
  124. layer.msg(response.msg, {
  125. time: 1500
  126. }, function() {
  127. window.location = response.url;
  128. });
  129. } else if ('vertify' == res.status) {
  130. mobile_fleshVerify();
  131. layer.msg(response.msg, {
  132. time: 2000
  133. });
  134. } else if (res.status == 1) {
  135. layer.msg(response.msg, {
  136. time: 2000
  137. });
  138. } else if (res.status == 2) {
  139. layer.msg(response.msg, {
  140. time: 1500
  141. }, function() {
  142. window.location = response.url;
  143. });
  144. } else if (res.status == 3) {
  145. layer.msg(response.msg, {
  146. time: 1500
  147. }, function() {
  148. window.location = response.url;
  149. });
  150. } else {
  151. mobile_fleshVerify();
  152. layer.msg(response.msg, {
  153. time: 2000
  154. });
  155. }
  156. },
  157. error: function(e) {
  158. layer.closeAll();
  159. mobile_fleshVerify();
  160. showErrorAlert(e.responseText);
  161. }
  162. });
  163. };