Contents

Develop
2013.12.17 11:42

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

조회 수 9439 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
489 Develop [pdf] 포인터 문법 정리 (C pointer) file hooni 2013.04.23 7145
488 Develop [chm] C++ 문법 가이드 file hooni 2013.04.23 7970
487 Develop [chm] 윈도우즈에서 디버깅 기법(Debugging Applications) file hooni 2013.04.23 7553
486 Develop [pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming) file hooni 2013.04.23 6866
485 Develop [chm] 비주얼 C++ 팁 모음 문서 file hooni 2013.04.23 7519
484 Develop [doc] C++언어 문법 설명서 file hooni 2013.04.23 6194
483 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6459
482 Develop [pdf] C 국제 표준 문서 file hooni 2013.04.23 6778
481 Develop [pdf] C++ 국제 표준 문서 file hooni 2013.04.23 7320
480 Develop [c][cpp] mfc, win32api, 예제 소스 대박 모음~ file hooni 2013.04.23 8479
479 Develop [c] 테트리스3D (Tetris 3D) file hooni 2013.04.23 7115
478 Develop [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI) file hooni 2013.04.23 7964
Board Pagination Prev 1 ... 53 54 55 56 57 58 59 60 61 62 ... 98 Next
/ 98