λ³Έλ¬Έ λ°”λ‘œκ°€κΈ°
μžλ°”μŠ€ν¬λ¦½νŠΈ

JQuery ν•„ν„° μ„ νƒμž

by Youcodein 2022. 8. 31.
728x90
λ°˜μ‘ν˜•

JQuery ν•„ν„°μ„ νƒμž

JQuery의 ν•„ν„° μ„ νƒμžμž…λ‹ˆλ‹€.
μ„ νƒμžμ— ":" 이 뢙은 μ„ νƒμžλ₯Ό ν•„ν„°μ„ νƒμžλΌκ³  ν•©λ‹ˆλ‹€.

1. κΈ°λ³Έ ν•„ν„° μ„ νƒμž

μ„ νƒμž μ’…λ₯˜ μ„€λͺ…
:even $("tr:even") tr μš”μ†Œ 쀑 짝수 ν–‰λ§Œ μ„ νƒν•©λ‹ˆλ‹€.
:odd $("tr:odd") tr μš”μ†Œ 쀑 ν™€μˆ˜ ν–‰λ§Œ μ„ νƒν•©λ‹ˆλ‹€.
:first $("td:first") 첫 번째 td μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:last $("td:last") λ§ˆμ§€λ§‰ td μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:header $("td:header") ν—€λ”©(h1~h6) μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:eq() $("li:eq(0)") indexκ°€ 0인 liμš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€. indexλŠ” 0번이 첫 번째 μš”μ†Œμž…λ‹ˆλ‹€.
:gt() $("li:gt(0)") indexκ°€ 0보닀 큰 liμš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:lt() $("li:lt(2)") indexκ°€ 2보닀 μž‘μ€ liμš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:not() $("li:not(.bg)") liμš”μ†Œ μ€‘μ—μ„œ classλͺ…이 bgκ°€ μ•„λ‹Œ li μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:root() $(":root") html을 μ˜λ―Έν•©λ‹ˆλ‹€.
:animated $(":animated") μ›€μ§μ΄λŠ” μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.

2. μžμ‹ ν•„ν„° μ„ νƒμž

μžμ‹ ν•„ν„° μ„ νƒμž 쀑 'child'κ°€ 뢙은 μ„ νƒμžλŠ” μš”μ†Œκ°€ 순차적으둜 λ‚˜μ—΄λ˜μ–΄ μžˆμ„ λ•Œ μ‚¬μš©ν•©λ‹ˆλ‹€. 'of-type'이 뢙은 μ„ νƒμžλŠ” μš”μ†Œκ°€ 순차적으둜 λ‚˜μ—΄λ˜μ–΄ μžˆμ§€ μ•Šμ•„λ„ 동일 μš”μ†Œμ΄λ©΄ 선택이 κ°€λŠ₯ν•©λ‹ˆλ‹€.

μ„ νƒμž μ’…λ₯˜ μ„€λͺ…
:first-child $("span:first-child") 첫 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:last-child $("span:last-child") λ§ˆμ§€λ§‰ span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:first-of-type $("span:first-of-type") span μš”μ†Œ μ€‘μ—μ„œ 첫 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:last-of-type $("span:last-of-type") span μš”μ†Œ μ€‘μ—μ„œ λ§ˆμ§€λ§‰ span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:nth-child() $("span:nth-child(2)") 두 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
nth-child(2n)은 2, 4, 6, ... 번째 μš”μ†Œλ₯Ό μ„ νƒν•˜κ³ ,
nth-child(2n+1)은 1, 3, 5, ... 번째 μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:nth-last-child() $("span:nth-last-child(2)") λ§ˆμ§€λ§‰μ—μ„œ 두 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:nth-of-type() $("span:nth-of-type(2)") span μš”μ†Œ μ€‘μ—μ„œ 두 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:nth-last-of-type() $("span:nth-last-of-type(2)") span μš”μ†Œ 쀑 λ§ˆμ§€λ§‰μ—μ„œ 두 번째 span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:only-child() $("div > span:only-child") div의 μžμ‹ μš”μ†Œμ—μ„œ 였직 span μš”μ†Œκ°€ ν•˜λ‚˜λ§Œ μžˆλŠ” span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:only-of-type() $("div > span:only-of-type") div의 μžμ‹ μš”μ†Œμ—μ„œ span μš”μ†Œκ°€ ν•˜λ‚˜λ§Œ μžˆλŠ” span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.

3. μ½˜ν…μΈ  ν•„ν„° μ„ νƒμž

μ„ νƒμž μ’…λ₯˜ μ„€λͺ…
:contains() $("p:contains('html')") pμš”μ†Œ μ€‘μ—μ„œ 'html' ν…μŠ€νŠΈλ₯Ό ν¬ν•¨ν•˜κ³  μžˆλŠ” p μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:empty $("div:empty") divμš”μ†Œ μ€‘μ—μ„œ μžμ‹ μš”μ†Œκ°€ μ—†λŠ” div μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:parent $("span:parent") span μš”μ†Œ 쀑에 μžμ‹ μš”μ†Œκ°€ μžˆλŠ” span μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:has() $("section:has(article)") section μš”μ†Œ μ€‘μ—μ„œ article을 ν•˜μœ„ μš”μ†Œλ‘œ 가지고 μžˆλŠ” section μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.

4. 폼 ν•„ν„° μ„ νƒμž

μ„ νƒμž μ’…λ₯˜ μ„€λͺ…
:text $("input:text") <input type="text"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:password $("input:password") <input type="password"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:image $("input:image") <input type="image"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:file $("input:file") <input type="file"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:button $(":button") <input type="button">, <button> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:checkbox $("input:checkbox") <input type="checkbox"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:radio $("input:radio") <input type="radio"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:submit $("input:submit") <input type="submit"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:reset $("input:reset") <input type="reset"> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:input $(":input") λͺ¨λ“  <input> μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:checked $("input:checked") <input> μš”μ†Œμ— checked 속성이 μžˆλŠ” μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:selected $("option:selected") <option> μš”μ†Œμ— selected 속성이 μžˆλŠ” μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:focus $("input:focus") ν˜„μž¬ <input>에 ν¬μ»€μŠ€κ°€ μžˆλŠ” μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:disabled $("input:disabled") <input>에 disabled 속성이 μžˆλŠ” μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:enabled $("input:enabled") <input>에 disabled κ°€ μ•„λ‹Œ μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.

5. κ°€μ‹œμ„± ν•„ν„° μ„ νƒμž

μ„ νƒμž μ’…λ₯˜ μ„€λͺ…
:hidden div:hidden div μš”μ†Œ 쀑 hidden인 μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
:visible div:visible div μš”μ†Œ 쀑 visible인 μš”μ†Œλ₯Ό μ„ νƒν•©λ‹ˆλ‹€.
λ‚΄μš©1
728x90
λ°˜μ‘ν˜•

'μžλ°”μŠ€ν¬λ¦½νŠΈ' μΉ΄ν…Œκ³ λ¦¬μ˜ λ‹€λ₯Έ κΈ€

μš”μ†Œ 크기 λ©”μ„œλ“œ  (1) 2022.09.01
JQuery 탐색 μ„ νƒμž  (4) 2022.08.31
JQuery μ†μ„±μ„ νƒμž  (3) 2022.08.30
JQuery κΈ°λ³Έ μ„ νƒμž  (4) 2022.08.30
JQueryλž€?  (5) 2022.08.30

λŒ“κΈ€