반응형
[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();
반응형
'prcExp' 카테고리의 다른 글
[2022.08.26] How to use Map(Key,value) on java? (0) | 2022.08.26 |
---|---|
[2022.08.23] How to install DBeaver on windows ? (0) | 2022.08.23 |
[2022.08.23] How to commit SVN on intellij? (0) | 2022.08.23 |
[2022.08.23] How to solve 415 error on ajax? (0) | 2022.08.23 |
[2022.08.23] How to move tabs on the current page using JS? (0) | 2022.08.23 |
댓글