본문 바로가기
prcExp

[2022.08.23] How do I get the text value of a selected option Using JS?

by injekim97 2022. 8. 23.
반응형

[2022.08.23] How do I get the text value of a selected option Using JS?

 

 

이번 게시글은 select box에서 선택한 text의 값을 가져오는 방법에 대해 알아보도록 하자 .

 

 

example

<select id="fruit">
    <option value="1">사과</option>
    <option value="2">바나나</option>
    <option value="3">토마토</option>
</select>

 

 

해결 방법

$( "#fruit option:selected" ).text();

 

 

 

* 여기서 value값을 가져오고 싶으면

$( "#fruit option:selected" ).val();

 

반응형

댓글