셀렉트박스 선택값 가져오기
<select onchange="service_sel(this);">
<option value="1">항목1</option>
<option value="2">항목2</option>
<option value="3">항목3</option>
</select>
function service_sel(obj){
alert(obj.options[obj.selectedIndex].value);
alert(obj.options[obj.selectedIndex].text);
}
'[ Web 관련 ] > 자바스크립트' 카테고리의 다른 글
크롬에서 스크립트 오류 발생 - The message port closed before a response was received (0) | 2019.02.17 |
---|---|
화면 중간에 팝업 띄우기 (0) | 2019.02.15 |
AJAX 샘플 및 케이스스터디 (0) | 2018.12.10 |
브라우저명과 모바일, PC브라우저 체크 (0) | 2018.10.26 |
텍스트박스 내용 자바스크립트에서 띄어쓰기 줄바꿈 적용해서 보여주기 (0) | 2018.09.14 |