The difference between append, prepend, before and after methods in jquery __jquery

Source: Internet
Author: User
1. Append () and prepend () Suppose
<div class= ' a ' >//<---you want div c to append in this
  <div class= ' B ' >b</div>
</div>

Use

$ ('. a '). Append ($ ('. C '));

The effect is as follows:

<div class= ' a ' >//<---you want div c to append in this
  <div class= ' B ' >b</div>
  <div class= ' C ' >c</div>
</div>

Same use

$ ('. a '). Prepend ($ ('. C '));

The effect is as follows:

<div class= ' a ' >//<---you want div c to append in this
  <div class= ' C ' >c</div>
  <div class= ' B ' >b</div>

</div>
2. Use after () and before ()

Use the same assumption code:

$ ('. a '). After ($ ('. C '));

The effect is as follows:

<div class= ' A ' >
  <div class= ' B ' >b</div>
</div>
<div class= ' C ' >c</div >

Same use before ()

$ ('. a '). Before ($ ('. C '));

The effect is as follows:

<div class= ' C ' >c</div>
<div class= ' A ' >
  <div class= ' B ' >b</div>
</div >
Summary: append () & Prepend () is the insertion of content within an element (which becomes a child element or node of that element), after () & before () is the insertion of content outside the element (the sibling node whose content becomes the element).

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.