比方說,我有這個數據,我只想prependTo
只有一次,因爲當我試圖prependTo
到('.container)
它顯示兩次每篇文章。prependTo item只有一次在div
<article class="blogpage-posts">
<div class="container">
<a href="#">Data One</a>
<h1 class="entry-title">Data to Prepend One</h1>
</div>
</article>
<article class="blogpage-posts">
<div class="container">
<a href="#">Data Two</a>
<h1 class="entry-title">Data to Prepend Two</h1>
</div>
</article>
這是代碼...
$(document).ready(function(){
$('.entry-title').prependTo('.container');
});
這是結果使用該代碼時。
Data to Prepend One
Data to Prepend Two <--- the data the display twice
Data One
Data to Prepend Two
Data to Prepend One <--- the data the display twice
Data One Two
'$每個((I,EL)=> $(EL).prependTo( $(el).closest('。container')))' –