|
@@ -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");
|