728x90
onchange() 함수 활용
간단히 onchange 함수를 활용해볼 수 있다.
- html
<select class="form-control" name="month" id="month" onchange="getMonth()">
<option value="1">1월</option>
<option value="2">2월</option>
<option value="3" >3월</option>
<option value="4" >4월</option>
<option value="5" >5월</option>
</select>
- script
// 제이쿼리를 이용한 방법
$("#month").change(function(){
let month1 = $(this).val();
let month2 = $("#month > option:selected").val();
console.log(month1);
console.log(month2);
});
// 함수를 만들어 호출하는 방법
function getMonth() {
let month3 = $("#month > option:selected").val();
console.log(month3);
}
셀렉트박스(SelectBox) 값(value) 고정시키기
// value값으로 설정
$("#month").val("5").prop("selected", true);
// optipn의 순서값으로 설정
$("#month option:eq(0)").prop("selected", true);
728x90
'프로그래밍 > Javascript' 카테고리의 다른 글
[jQuery/javascript] JSTL을 사용하여 select box 값 고정하기 (0) | 2020.07.20 |
---|---|
input 입력시 천 단위마다 자동으로 콤마(,) 입력 (0) | 2020.06.23 |
[자바스크립트] 소수점 버림, 올림, 반올림, 자르기 방법 (0) | 2020.06.10 |
[자바스크립트] 배열 순서 거꾸로(뒤에서부터, 반대로) 출력하기 (0) | 2020.04.12 |
[자바스크립트] moment.js COUNTDOWN(카운트) 기능 (0) | 2020.04.12 |