본문 바로가기

World Wide Web/jquery

jquery form 값 받아오기(셀렉트박스)

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