About the jquery suspension: First and: First-child and: First-of-type differences

Source: Internet
Author: User

: First: Select the element that appears to match

: first-child: Select the first element in the constraint and must match the label preceding the colon

: First-of-type: Select the label element in front of the first colon under all restrictions, this label may not be the first

Test: First Code:

<Body><a></a><P>1</P><P>2</P><P>3</P><Div><a>Hello1</a><P>Hello2</P><P>Hello3</P></Div><Div><P>Hello4</P><P>Hello5</P><P>Hello6</P></Div><Div></Div><Script>    $(function() {$zzz=$("P:first"). text (); alert ($zzz);});</Script>
</body>

The result is:

Test: First-child Code:

<Body><a></a><P>1</P><P>2</P><P>3</P><Div><a>Hello1</a><P>Hello2</P><P>Hello3</P></Div><Div><P>Hello4</P><P>Hello5</P><P>Hello6</P></Div><Div></Div><Script>    $(function() {$zzz=$("P:first-child"). text (); alert ($zzz);});</Script></Body>

The result is:

Test: First-of-type Code:

<Body><a></a><P>1</P><P>2</P><P>3</P><Div><a>Hello1</a><P>Hello2</P><P>Hello3</P></Div><Div><P>Hello4</P><P>Hello5</P><P>Hello6</P></Div><Div></Div><Script>    $(function() {$zzz=$("P:first-of-type"). text (); alert ($zzz);});</Script></Body>

The result is:

How, well understand, study the long time!

About the jquery suspension: First and: First-child and: First-of-type differences

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.