728x90
SMALL

전체 글 128

[JavaScript] JavaScript / Functions / encodeURI(), encodeURIComponent(), decodeURI(), decodeURIComponent()

#JavaScript #avaScript / Functions / encodeURI(), encodeURIComponent(), decodeURI(), decodeURIComponent() encodeURI(), encodeURIComponent(), decodeURI(), decodeURIComponent() encodeURI() : A function that encodes without :, ;, /, =, ?, &, etc. used in internet addresses. encodeURIComponent() : a function that encodes all characters. decodeURI() : A function that decodes a string encoded with enc..

Javascript 2022.08.03

[jQuery] jQuery / Selector / :nth-child() - Selector that selects the an+bth sibling element

#jQuery #:nth-child() :nth-child() :nth-child() is a selector that selects the an+bth sibling element. grammar $( ':nth-child(an+b)' ) a and b are constants, n is a variable. Non-negative integers (0, 1, 2, 3, ...) are assigned to n in sequence. You can use even, odd instead of an+b. example $( 'ol li:nth-child(2)' ) Selects the second element from the sibling elements of li, which is a child el..

jQuery 2022.08.02
728x90
LIST