알이즈웰
jQuery selectBox에서 option text값 가져오기 본문
jQuery selectBox에서 option text 값 가져오기
selectBox jsp 예시
<select id="manageTp">
<option value="">전체내역</option>
<option value="1">적립내역</option>
<option value="2">사용내역</option>
</select>
javascript에서
//이렇게 호출하면 $("#manageTp").text()
모든 option의 text값을 다 출력하지만
//이렇게 호출하면 선택한 옵션의 text값만 가져온다. $("#manageTp option:checked").text()
[참고] http://trandent.com/board/Javascript/detail/635
'Programming > Front-End' 카테고리의 다른 글
jQuery 자식요소 seletor & li의 value 가져오기 (3) | 2017.06.06 |
---|---|
jQuery 자식요소(find, children) (0) | 2017.05.29 |
JSTL 함수로 현재 시간 나타내기 (0) | 2017.05.11 |
Select Box의 값 중 특정 값 selected (0) | 2017.05.11 |
jQuery Select Box 제어 (0) | 2017.05.11 |
Comments