본문 바로가기
IT 자료

html의 select의 value와 text 가져오는 방법

by 성곤 2015. 7. 30.
반응형



html의 select의 value와 text 가져오는 방법


자바스크립트에서

var select = document.getElementById("select_id");
var option_value = select.options[select.selectedIndex].value;
var option_text   = select.options[select.selectedIndex].text;



제이쿼리에서

var option_value = $("#select_id option:selected").val();
var option_text  = $("#select_id option:selected").text();



해당 내용의 출처를 알립니다.

출처 : http://bloodguy.tistory.com/303

반응형

'IT 자료' 카테고리의 다른 글

DB2 날짜 계산  (0) 2015.08.06
ajax에서 form양식 보낼때  (0) 2015.07.30
DB2 트리거 예제  (0) 2015.07.28
DB2 트랜젝션 로그 확인하기  (0) 2015.07.23
DB2 메모리 사용 현황  (0) 2015.07.21