728x90
//class가 form-control-user인 요소들을 readonly 처리를 해보자
//$('.form-control-user').prop('readonly', true);
$('.form-control-user').attr('readonly', 'readonly');
//비활성
$("#category").attr("disabled","disabled");
//상태도 읽기전용 처리
//$("input[name='condition']").attr('disabled','disabled');
$("input[name='condition']").attr('onclick','return(false);');
//파일 등록 버튼 가리기
$('#bookImage').parent().css("display","none");
//ckeditor를 읽기 전용으로 처리
CKEDITOR.instances['description'].setReadOnly(true);
//수정보튼 클릭 -> 수정모드로 전환
$("#edit").on("click",function(){
$("#div1").css("display","none");
$("#div2").css("display","block");
//class가 form-control-user인 요소들을 readonly 처리를 해보자
//$('.form-control-user').prop('readonly', true);
$('.form-control-user').removeAttr('readonly', 'readonly');
//비활성 -> 활성
$("#category").removeAttr("disabled","disabled");
//상태도 읽기전용 처리 -> 수정가능
//$("input[name='condition']").attr('disabled','disabled');
$("input[name='condition']").attr('onclick','return(true);');
//파일 등록 버튼 가리기
$('#bookImage').parent().parent().css("display","block");
//ckeditor를 읽기 전용으로 처리 -> 수정가능
CKEDITOR.instances['description'].setReadOnly(false);
'JSP > Muzi' 카테고리의 다른 글
일정 시간마다 이미지 변경하기(setTimeout ,setInterval ) (0) | 2023.10.06 |
---|---|
등록일자 시간 나타내기 (0) | 2023.10.04 |
시험 및 요약 (0) | 2023.07.17 |
JSP 정규식 패턴 비밀번호(validation) (0) | 2023.07.15 |
JSP 오류처리(error page) 페이지 만들기 (0) | 2023.06.23 |