j Q u e r y D o c u m e n t a t i o n 1
C o r e
$ ( . . . ) T h e j Q u e r y F u n c t i o n
j Q u e r y ( e x p r e s s i o n , c o n t e x t ) [ F u n c t i o n ]
T h i s f u n c t i o n a c c e p t s a s t r i n g c o n t a i n i n g a C S S s e l e c t o r w h i c h i s t h e n u s e d t o m a t c h a s e t o f e l e m e n t s .
S i g n a t u r e
j Q u e r y
(
e x p r e s s i o n , c o n t e x t
) »
j Q u e r y
D e s c r i p t i o n
T h e c o r e f u n c t i o n a l i t y o f j Q u e r y c e n t e r s a r o u n d t h i s f u n c t i o n . E v e r y t h i n g i n j Q u e r y i s b a s e d u p o n t h i s , o r u s e s t h i s i n s o m e w a y . T h e m o s t b a s i c u s e o f t h i s f u n c t i o n i s t o p a s s i n a n e x p r e s s i o n ( u s u a l l y c o n s i s t i n g o f C S S ) , w h i c h t h e n f i n d s a l l m a t c h i n g e l e m e n t s . B y d e f a u l t , i f n o c o n t e x t i s s p e c i f i e d , $ ( ) l o o k s f o r D O M e l e m e n t s w i t h i n t h e c o n t e x t o f t h e c u r r e n t H T M L d o c u m e n t . I f y o u d o s p e c i f y a c o n t e x t , s u c h a s a D O M e l e m e n t o r j Q u e r y o b j e c t , t h e e x p r e s s i o n w i l l b e m a t c h e d a g a i n s t t h e c o n t e n t s o f t h a t c o n t e x t . S e e [ [ S e l e c t o r s | S e l e c t o r s ] ] f o r t h e a l l o w e d C S S s y n t a x f o r e x p r e s s i o n s .
P a r a m e t e r s
e x p r e s s i o n
( S t r i n g )
A n e x p r e s s i o n t o s e a r c h w i t h .
c o n t e x t
( E l e m e n t , j Q u e r y )
A D O M E l e m e n t , D o c u m e n t o r j Q u e r y t o u s e a s c o n t e x t
E x a m p l e s
E x a m p l e 1
F i n d s a l l p e l e m e n t s t h a t a r e c h i l d r e n o f a d i v e l e m e n t .
C o d e
$ ( " d i v > p " ) . c s s ( " b o r d e r " , " 1 p x s o l i d g r a y " ) ;
H t m l
< p > o n e < / p > < d i v > < p > t w o < / p > < / d i v > < p > t h r e e < / p >
R e s u l t s
[ < p > t w o < / p > ]
Leave a Comment