1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <select class="creditSelect" style="width:93px;" title=""> <option>선택</option> <option>1건</option> <option>2건</option> <option>3건</option> <option>4건</option> <option>5건</option> </select> jQuery(".creditSelect").change(function(){ alert(jQuery(".creditSelect").val()) }) 셀렉트 박스의 값이 변하는 순간 change이벤트가 실행되면서 value값을 물어온다 var index = $(".creditSelect option").index($(".creditSelect option:selected")); //선택한 순서값 가져오기 꿀팁! | cs |
'World Wide Web > jquery' 카테고리의 다른 글
[jquery] jquery로 css position띄우기 (0) | 2013.05.07 |
---|---|
jquery, 셀렉트박스 기본값 selected (0) | 2013.05.02 |
jquery ajax로 xml파싱하기 (0) | 2013.04.05 |
다양한 jQuery plug-in (0) | 2013.03.22 |
하단 슬라이딩 이미지(jCarouselLite) (0) | 2013.01.09 |