반응형
jquey 는 맨날 까먹는다.
그래서 간단한것은 정리를 해서 다음부터 쉽게 사용하자
//select box의 내용 가져오기
$("#select_box > option:selected").val();
//select box의 값 설정
$("#select_box > option[value=지정값]").attr("selected", "true")
//select disabled
$('#select_box').attr('disabled', 'true');
// 해제
$('#select_box').attr('disabled', ''); // 'false'를 줬을 경우 안됨
//select box의 내용 가져오기
var value = $("#select_box > option:selected").val();
//select box의 값 설정
$("#select_box > option[value=지정값]").attr("selected", "true")
//select disabled
$('#select_box').attr('disabled', 'true');
// 해제
$('#select_box').attr('disabled', ''); // 'false'를 줬을 경우 안됨
반응형
'jQuery' 카테고리의 다른 글
jQuery 화폐단위 천단위 콤마 (0) | 2023.09.01 |
---|---|
jQuery checkbox 전체선택 선택여부 선택값 (0) | 2023.09.01 |
jQuery radio 라디오 버튼의 체크된 값, 체크 여부 확인 (0) | 2023.09.01 |
jquery 숫자만 입력 (0) | 2021.02.24 |
jquery checkbox 전체선택 선택건수 (0) | 2020.03.31 |