欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery中append、prepend, before和after方法的区别

程序员文章站 2022-03-19 20:08:54
...


1. append()和prepend()

假设

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

使用

$('.a').append($('.c'));

效果如下:

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

同样使用

$('.a').prepend($('.c'));

效果如下:

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

</p>

2. 使用after()和before()

同样使用假设代码:

$('.a').after($('.c'));

效果如下:

<p class='a'>
  <p class='b'>b</p></p><p class='c'>c</p>

同样使用before()

$('.a').before($('.c'));

效果如下:

<p class='c'>c</p><p class='a'>
  <p class='b'>b</p></p>

总结:

append() & prepend()是在元素内插入内容(该内容变成该元素的子元素或节点),after() & before()是在元素的外面插入内容(其内容变成元素的兄弟节点)。

1. append()和prepend()

假设

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

使用

$('.a').append($('.c'));

效果如下:

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

同样使用

$('.a').prepend($('.c'));

效果如下:

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

</p>

2. 使用after()和before()

同样使用假设代码:

$('.a').after($('.c'));

效果如下:

<p class='a'>
  <p class='b'>b</p></p><p class='c'>c</p>

同样使用before()

$('.a').before($('.c'));

效果如下:

<p class='c'>c</p><p class='a'>
  <p class='b'>b</p></p>

总结:

append() & prepend()是在元素内插入内容(该内容变成该元素的子元素或节点),after() & before()是在元素的外面插入内容(其内容变成元素的兄弟节点)。

以上就是jquery中append、prepend, before和after方法的区别的详细内容,更多请关注其它相关文章!