본문 바로가기
프로그래밍/jQuery

jQuery API 정복 - 폼에 속한 input 들 선택하기 : jQuery(':input')

by zoo10 2011. 2. 11.

:input 은 문서상에 있는 모든 input 과 textarea, select, button 요소들을 찾아줍니다.

원문 링크 http://api.jquery.com/input-selector/

input selector

  • jQuery(':input')

폼에 속하는 하위 요소들인 input, textarea, select 와 같은 사용자 입력 요소들을 이 선택자로 모두 찾아낼 수 있습니다.

예 제  
모든 input 요소를 찾아서 그 개수를 표시합니다.

<!DOCTYPE html>
<html>
<head>
  <style>
  textarea { height:25px; }
  </style>
  <script src="http://code.jquery.com/jquery-1.5.js"></script>
</head>
<body>
  <form>
    <input type="button" value="Input Button"/>
    <input type="checkbox" />

    <input type="file" />
    <input type="hidden" />
    <input type="image" />

    <input type="password" />
    <input type="radio" />
    <input type="reset" />

    <input type="submit" />
    <input type="text" />
    <select><option>Option</option></select>

    <textarea></textarea>
    <button>Button</button>
  </form>
  <div id="messages">
  </div>
<script>

    var allInputs = $(":input");
    var formChildren = $("form > *");
    $("#messages").text("Found " + allInputs.length + " inputs and the form has " +
                             formChildren.length + " children.");
            
    // so it won't submit
    $("form").submit(function () { return false; }); 

</script>

</body>
</html>

미리보기

위 소스에 보시면 input 선택자를 이용하는 방법과 form 에 속한 모든 요소를 선택하는 방법으로 2가지가 있습니다. 지금 예제 코드의 결과는 13개 요소로 동일한 결과를 보여주지만 실제로 form 태그 안에 div 나 span 태그와 같은 요소를 집어넣어 테스트 해보면 다른 결과가 나옵니다. 즉, form > * 은 form 에 속한 모든 하위요소를 찾는 것입니다. 참고하시기 바랍니다.

 

휴~ 선택자 해도해도 끝이 없네요. 하하.. 그래도 3 분의 2 정도는 한 것 같습니다. 힘내세요.

그럼 즐프하세요.

※ 본 예제는 http://www.jquery.com 에 있는 내용임을 밝힙니다.