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

jQuery API 정복 - text 박스 찾기 : text

by zoo10 2011. 2. 24.

:text 는 input 중 type이 text 인 요소를 찾습니다.

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

text selector

  • jQuery(':text')

예 제  
텍스트 박스를 찾습니다.

<!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>
  </div>
<script>

    var input = $("form input:text").css({background:"yellow", border:"3px red solid"});
    $("div").text("For this type jQuery found " + input.length + ".")
            .css("color", "red");
    $("form").submit(function () { return false; }); // so it won't submit

</script>

</body>
</html>

미리보기

$(':text') 선택자는 $('[type=text]') 로 대체하여 사용할 수 있습니다.

 

뭐 너무 평이해서 사족을 달게 없어요. ^^;;

그럼 즐프하세요.

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