Contents

Develop
2013.12.17 11:42

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

조회 수 9436 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

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


$("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

...



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
693 Develop [pdf] C++ 국제 표준 문서 file hooni 2013.04.23 7318
692 Develop [pdf] C 국제 표준 문서 file hooni 2013.04.23 6774
691 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6449
690 Develop [doc] C++언어 문법 설명서 file hooni 2013.04.23 6187
689 Develop [chm] 비주얼 C++ 팁 모음 문서 file hooni 2013.04.23 7514
688 Develop [pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming) file hooni 2013.04.23 6864
687 Develop [chm] 윈도우즈에서 디버깅 기법(Debugging Applications) file hooni 2013.04.23 7535
686 Develop [chm] C++ 문법 가이드 file hooni 2013.04.23 7959
685 Develop [pdf] 포인터 문법 정리 (C pointer) file hooni 2013.04.23 7137
684 Develop [chm] Programming Applications for Microsoft Windows file hooni 2013.04.23 7278
683 Develop [c] Unix Domain Socket 을 이용한 IPC hooni 2013.04.23 8031
682 Develop [c++] 쓰레드(Thread) 객체의 사용 hooni 2013.04.23 8600
Board Pagination Prev 1 ... 36 37 38 39 40 41 42 43 44 45 ... 98 Next
/ 98