728x90
반응형
질문 : 첫 번째 옵션을 만드는 방법
jQuery로 첫 번째 옵션을 선택하려면 어떻게해야합니까?
<select id="target">
<option value="1">...</option>
<option value="2">...</option>
</select>
답변
$("#target").val($("#target option:first").val());
출처 : https://stackoverflow.com/questions/1414276/how-to-make-the-first-option-of-select-selected-with-jquery
728x90
반응형
'프로그래밍 언어 > jQuery, ajax' 카테고리의 다른 글
jQuery 팁과 트릭 (0) | 2021.07.15 |
---|---|
jQuery에서 div 요소 생성하기 (0) | 2021.07.14 |
jQuery로 동기식 Ajax 요청 하는 방법 (0) | 2021.07.09 |
jQuery 데이터 속성 값을 기반으로 요소를 찾는 방법 (0) | 2021.07.07 |
jQuery에 대한 "exists"기능 (0) | 2021.07.06 |