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

jQuery API 정복 - 사용 불가 상태 선택하기 : jQuery(':disabled')

by zoo10 2011. 1. 28.

:disabled 은 요소 중에 사용불가(disabled) 상태인 요소를 찾아 반환해 줍니다.

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

disabled selector

개요 : 요소들 중에 사용 불가 상태인 요소를 찾습니다.

  • jQuery(':disabled')

예 제  
input 중에 disabled 인 상태를 가진 요소에 'this is it' 이라 씁니다.

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
  <form>

    <input name="email" disabled="disabled" />
    <input name="id" />
  </form>
<script>$("input:disabled").val("this is it");</script>

</body>
</html>

미리보기

 

사용 불가 상태인 요소를 찾아야 하는 일이 종종 발생하는 데, 요긴하게 쓸 수 있을 것 같습니다.

그럼 즐프하세요.

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