sugangqiang 2 년 전
부모
커밋
46a4dc9b01
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      public/static/modular/gate/talentInfo/new_talentInfo_info.js

+ 2 - 2
public/static/modular/gate/talentInfo/new_talentInfo_info.js

@@ -1175,7 +1175,7 @@ TalentInfoInfoDlg.setNoChangeField = function () {
     if (realState == 11) {
         $("#photoImg").removeAttr("onclick");
         $("input,textarea").each(function () {
-            $(this).attr("disabled", "disabled").attr("readonly", "readonly");
+            $(this).attr("readonly", "readonly");
         });
         $("select,input[type=radio]").each(function () {
             $(this).attr("disabled", "disabled");
@@ -1194,7 +1194,7 @@ TalentInfoInfoDlg.setNoChangeField = function () {
                     if (name == 'select' || name == 'SELECT') {
                         $("#" + arr[key]).removeAttr("disabled");
                     } else if (name == "input" || name == 'textarea' || name == "INPUT" || name == 'TEXTAREA') {
-                        $("#" + arr[key]).removeAttr("readonly").removeAttr("disabled");
+                        $("#" + arr[key]).removeAttr("readonly");
                     } else {
                         if (typeof name == "undefined") {
                             $("input[name=" + arr[key] + "]").removeAttr("disabled").removeAttr("readonly");