How jquery appends elements (the difference between append prepend after before)

Source: Internet
Author: User

The append () method inserts the content at the end of the selected element.

The prepend () method inserts the content at the beginning of the selected element.

The After () method inserts content after the selected element.

The before () method inserts the content before the selected element.

1 <Divclass= "Testdiv">2     <ul>3         <Li>First Li Tag</Li>4     </ul>5 </Div>6 7 <Script>8 9     //AppendTen     $('. Testdiv ul'). Append ('<li>append insertion of li</li>'); One     //prepend A     $('. Testdiv ul'). prepend ('<li>prepend insertion of li</li>'); -     // After -     $('. Testdiv ul'). After ('<li>after insertion of li</li>'); the     //before -     $('. Testdiv ul'). Before ('<li>before insertion of li</li>'); -  - </Script>
View Code

How jquery appends elements (the difference between append prepend after before)

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.