-
[jQuery/javascript] 폼필터, 폼선택, 폼 가져오기 <form selector>프로그램/jQuery/Javascript 2013. 9. 11. 10:13jQuery Form의 값 가져오는 방법. selector
폼필터 종류에 대해 알아보겠습니다.
모든 폼앞에는 : 가 들어갑니다.
알아보게 쉽게 표로 보여드리겠습니다.
:button
<input type=”butto” />
:checkbox
<input type=”checkbox” />
:checked
<input type=”checkbox” checked=”checked” />
:disabled
<input type=”text” disabled=”disabled” />
:enabled
<input type=”text” enabled=”enabled” />
:file
<input type=”file” />
:focus
(1.6 이상에서 지원)
:image
<input type=”image” />
:input
<input> 모든 input 요소
:password
<input type=”password” />
:radio
<input type=”radio” />
:reset
<input type=”reset” />
:selected
<select><option selected="selected"></option></select>
:submit
<input type=”submit” />
:text
<input type=”text” />
:hidden
<input type=”hidden” />
사용 예로는?
//개수구하기 $("input[name=chk1]:checkbox:checked").length //체크여부 $("#check_all").is(':checked')
'프로그램 > jQuery/Javascript' 카테고리의 다른 글
[jQuery] 셀렉터(seletor) 비슷한 값으로 찾는 방법 (0) 2013.09.11 [javascript/jQuery] 클립보드 액세스 허용여부 확인하기 (0) 2013.09.11 [jQuery/PlugIn]이미지 자동으로 넘기는 cycle 플러그인 활용기.<이미지슬라이더> (0) 2013.09.10 [javascript/jQuery]스크롤시 메뉴 항상 위에 배치 시키기 (퀵메뉴) (0) 2013.09.10 [javascrip/jQuery] 클립보드 제거, 프린터스크린키 막기, 복사방지 (0) 2013.09.09