示例 HTML:
<h2 class="x1">1</h2>
<h2 class="x2">2</h2>
<h2 class="x3">3</h2>
<h2 class="x4">4</h2>
<h2 class="x5">5</h2>
我想换...
1
2 <---
3 |
4 |
5 <---
所以我喜欢这个
$('.x2').insertBefore('.x5');
$('.x5').insertBefore('.x2');
所以我得到这样的结果
1
3
4
5 <---
2 <---
我怎样才能得到...的结果?
1
5 <---
3 |
4 |
2 <---
游乐场:http: //jsfiddle.net/l2aelba/aHwSJ/
PS:如果可能的话,我不想这样做
$('.x2').insertBefore('.x5');
$('.x5').insertBefore('.x3');
我只需要选择元素 2 个元素(不是另一个)