$("#mobile").on('keyup paste blur', function () {
            var mobile = $(this).val();
            if ((/^1[34578]\d{9}$/.test(mobile))) {
                GetSinup(mobile);
            } else if ((/^\d{18}$/.test(mobile))) {
                GetSinup(mobile);
            }
})

相关文章:

  • 2022-01-13
  • 2022-12-23
  • 2021-06-11
  • 2021-08-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-03
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-07-18
相关资源
相似解决方案