HTML Select 박스에서 option value이나 text를 가져올 때 다음과 같은 방법을 쓴다.
Select박스에서 이벤트 발생 시 자바스크립트 호출
<select id="num" onchange="selectNum()">
<option value = "1" selected>하나</option>
<option value = "2">둘</option>
</select>
Select박스에서 선택한 값의 option value,text 가져오기
function selectNum(){
var numSelect = document.getElementById("num");
// text 가져오기
var text = numSelect.options[document.getElementById("num").selectedIndex].text;
// option value 가져오기
var value = numSelect.options[document.getElementById("num").selectedIndex].value;
'Web Programming > JavaScript' 카테고리의 다른 글
[JavaScript] 엔터(Enter) 이벤트 발생 시키기 (0) | 2020.12.17 |
---|---|
[JavaScript] 페이지 호출시 함수 호출 - onload (0) | 2018.12.19 |
[JavaScript] document.getElementById() (0) | 2018.09.13 |
[JavaScript] 브라우저 언어 확인 (0) | 2018.09.13 |
[JavaScript] 날짜 객체(Date Object) (0) | 2018.08.01 |