<select id="choice">
<option value="1">하나</option>
<option value="2">둘</option>
<option value="3">셋</option>
</select>
<script>
$("#choice").val("2").prop("selected",true);
</script>
* jquery 환경에서 실행 됩니다.
+ 추가 +
change 이벤트가 발생하지 않을 때
$("#choice").val("1").prop("selected",true).change();
끝
'JavaScript&Platform > jQuery' 카테고리의 다른 글
[jQuery] Div click index (0) | 2018.07.10 |
---|---|
[jQuery] .load() 사용 (0) | 2016.12.29 |
[jQuery] Ajax Call pattern 호출 패턴 (0) | 2016.05.12 |
[jQuery] table row 홀수, 짝수 배경색 지정하기 (0) | 2014.12.12 |
[jQuery] 숫자 자동 증가 animation (0) | 2014.12.11 |