after( ) と
Before
.html" target="_blank">before
<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>
$('.a').after($('.c'));
を使用すると仮定します。その効果は次のとおりです。
<p class='a'> <p class='b'>b</p></p><p class='c'>c</p>
効果は次のとおりです:
$('.a').before($('.c'));
2. after() を使用します before() と同じ仮想コードを使用します
:
<p class='c'>c</p><p class='a'> <p class='b'>b</p></p>
<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>
以上がjqueryのappend、prepend、beforeおよびafterメソッドの違いの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。