Top Banner
Searching the DOM
11

Try Jquery Level2 Section1

Jul 20, 2016

Download

Documents

JerryJerry
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Try Jquery Level2 Section1

Searching the DOM

Page 2: Try Jquery Level2 Section1

2.1 Searching the DOM

Selecting descendantsHTML document

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li>Paris</li> <li class='promo'>Rio</li></ul>

How do we find the <li> elements that are inside of the <ul> with a “destinations” ID?

descendant selector

Page 3: Try Jquery Level2 Section1

li

li

li

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations">

<li>Paris</li> <li>Rome</li>

<li class='promo'>Rio</li></ul>

Using the descendant selector

$("#destinations li");

HTML documentbody

h1

h2

Where do...

Plan your...

ul

Rome

li

Paris

li

Rio

li

the space matters

2.1 Searching the DOMparent descendant

Page 4: Try Jquery Level2 Section1

<li>Paris</li>

<li>Rome</li>

<li class='promo'>Rio</li>

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations">

<li><ul id="france">

</ul> </li>

</ul>

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations">

HTML document

How do we find only the <li> elements that are children of the “destinations” <ul>?

descendant selector?

2.1 Searching the DOM

Selecting direct childrenHTML document

Page 5: Try Jquery Level2 Section1

ul

li

li

Paris

li

li

li

li

li

Selecting direct children

$("#destinations li");

HTML documentbody

ul

Rome

Rio

li

2.1 Searching the DOM

...

we don’t want this

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li> <ul id="france"> <li>Paris</li> </ul> </li> <li class='promo'>Rio</li></ul>

Page 6: Try Jquery Level2 Section1

How do we find only the <li> elements that are direct children of the “destinations” <ul> then?

child selector

Selecting only direct childrenHTML document

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li> <ul id="france"> <li>Paris</li> </ul> </li> <li class='promo'>Rio</li></div>

2.1 Searching the DOM

Page 7: Try Jquery Level2 Section1

li

li

Paris

ul

li

li

li

li

body

ul

Rome

Rio

li

...

Selecting only direct children

$("#destinations > li");

HTML document

the sign matters

parent child

not selected

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li> <ul id="france"> <li>Paris</li> </ul> </li> <li class='promo'>Rio</li></ul>

Page 8: Try Jquery Level2 Section1

How do we find only elementswith either a “promo” class or a “france” ID

multiple selector

Selecting multiple elementsHTML document

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li> <ul id="france"> <li>Paris</li> </ul> </li> <li class='promo'>Rio</li></ul>

2.1 Searching the DOM

Page 9: Try Jquery Level2 Section1

ul

lili

ul

Selecting multiple elements

$(".promo, #france");

HTML document

<h1>Where do you want to go?</h1><h2>Travel Destinations</h2><p>Plan your next adventure.</p><ul id="destinations"> <li>Rome</li> <li> <ul id="france"> <li>Paris</li> </ul> </li> <li class='promo'>Rio</li></ul>

the comma matters

li

li

Paris

li

body

ul

Rome

Rio

...

Page 10: Try Jquery Level2 Section1

li

lili

li

body

h1

h2

Where do...

Plan your...

ul

Rome

Paris

li

Rio

$("#destinations li:first");

CSS-like pseudo classes

filter

$("#destinations li:last");

2.1 Searching the DOM

Page 11: Try Jquery Level2 Section1

li

li

body

h1

h2

Where do...

Plan your...

ul

Rome

Paris

li

Rio

li

CSS-like pseudo classes

$("#destinations li:odd");

$("#destinations li:even");

#0

#1

#2watch out, the index starts at 0⚠

2.1 Searching the DOM

li

li