国内流行的内容管理系统(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.

16 lines
503B

  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 (rs) {
  6. if (rs.code === 0) {
  7. if (rs.data.isNeed) {
  8. $("#vdimgck").show();
  9. } else {
  10. $("#vdimgck").hide();
  11. }
  12. }
  13. });
  14. }
  15. })
  16. })