国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  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. });