Develop

[js] jQuery 셀랙터(selector) 요약

by hooni posted Dec 17, 2013
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

나중에 정리해서 다시 올릴 거..


$("input[disabled]")

<input ... disabled />


$("div[id='a']")

<div id="a"></div>


$("a[href^='https:']")

<a href="https://hooni.net">HTTPS로 시작하는 것들..</a>


$("a[href$='.net']")

<a href="https://hooni.net">.net으로 끝나는 것들..</a>


$("img[alt*='picomax']") // picomax 라는 단어가 포함되어 있는 것들.. (1,2번)

$("img[alt~='picomax']") // picomax 라는 단어로 포함하는(앞 뒤 공백, 띄어쓰기로 되어 있는..) (2번만)


1. <img src="..." alt="picomax의 로고" />

2. <img src="..." alt="테스트 picomax daum facebook" />


- 필터

input:text

<input type="text" />


input:checked

input:disabled

input:enabled

input:focus

input:selected

...