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/
$('[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/
'웹개발' 카테고리의 다른 글
[JSP] page 디렉티브 속성 trimDirectiveWhitespaces (0) | 2011.03.29 |
---|---|
[JAVA] decomiler 디컴파일러 (0) | 2011.03.27 |
[JSP/ORACLE] JSP로 ORACLE DB연결 테스트하기 (0) | 2011.02.21 |
[TOMCAT] UTF-8 설정시 한글깨짐 (1) | 2011.02.15 |
[JAVA/Servelet] Dynamic Web Modules ? (0) | 2011.02.01 |