JQuery - select 선택 값 가져오기

select 선택 값을 jquery로 가져오기, 너무 쉽지

그냥 select 선택해서 val() 하면 되는거 아냐~~~~~ 했다가 ㅋㅋㅋ 실패 NoneType 이 올라오는데

 

ㅋㅋㅋ 아래처럼 해야 한다.

var selvalue = $('#selectbox_id').find(":selected").text();

https://stackoverflow.com/questions/10659097/jquery-get-selected-option-from-dropdown

 

jQuery Get Selected Option From Dropdown

Usually I use $("#id").val() to return the value of the selected option, but this time it doesn't work. The selected tag has the id aioConceptName html code <label>Name</label> <in...

stackoverflow.com

 

<select> 태그가 <option> 태그로 값을 가져오니 그런가 부다

 

암튼 이런건 인터넷에 솔루션이 넘쳐나니 걱정할 껀 아니고

골라봐요 ㅋㅋㅋ

ANTONI SHKRABA 님의 사진, 출처: Pexels