본문 바로가기

웹개발

[jQuery/Core/기본/기초 ] Selectors ( 객체 가져오기 )


jQuery에 가장 기초로 해당 객체를 가져오는 것을 Selectors 라고 한다.
아래는 그 방법들이다.

$('#id명') // ID로 가져오기

$('[attribute|="value"]')  // 해당 value가 단어로 들어간 객체를 찾는다 ( "-" 앞은 단어로 인식 )
$('[attribute~="value"]') // 위와 반대로 value가 단어로 들어가지 않은 객체를 찾는다.

$('[attribute*="value"]')  // 해당 value가 들어간 객체를 찾는다 ( 단어 아니여도 됨 )  
$('[attribute$="value"]')  // value가 끝에 있는 객체를 찾는다.

$('[attribute="value"]')   // 완전일치
$('[attribute!="value"]') // 해당값이 아닌것 not

$('[attribute^="value"]') // 시작값이 value인 객체

$(":button") // 버튼 객체 가져오기
$(':checkbox') = $('[type=checkbox]') // 체크박스 가져오기
$("input:checked") // 체크박스 선택된 내용 가져오기

내용 계속 업데이트 됩니다.

출처 : http://api.jquery.com/category/selectors/