国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

17 lines
548B

  1. $(document).ready(function () {
  2. $("#iptUserid").focusout(function () {
  3. let userid = $(this).val();
  4. if (userid !== '') {
  5. $.get("api.php?action=is_need_check_code&userid=" + userid, function (data) {
  6. let rs = JSON.parse(data);
  7. if (rs.code === 0) {
  8. if (rs.data.isNeed) {
  9. $("#vdimgck").show();
  10. } else {
  11. $("#vdimgck").hide();
  12. }
  13. }
  14. });
  15. }
  16. })
  17. })