본문 바로가기

jQuery

[jQuery] select 태그 읽기 전용으로 사용하기

728x90

select 태그에는 readonly 속성이 없습니다. 

disabled 속성을 통해 선택 기능을 막고, 제출 전에 disabled 속성을 풀어주면 됩니다.

 

 

$('form').bind('submit', function () {
  $(this).find(':input').prop('disabled', false);
});

 

 

참조 : https://stackoverflow.com/questions/1191113/how-to-ensure-a-select-form-field-is-submitted-when-it-is-disabled

728x90

'jQuery' 카테고리의 다른 글

[JavaScript] 템플릿 리터럴 활용법  (0) 2022.08.11