Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
181 views
in Technique[技术] by (71.8m points)

jquery - Cannot wrap divs correctly with nextUntil()

I have the following HTML. I have tried the following, but I can't wrap the elements correctly.

$('.cards .card-image').each(function() {
  $(this).nextUntil(".card-description").addBack().wrapAll("<div class='card'></div>");
});
<div class="cards">
  <img class="card-image" src="...">
  <img class="card-image" src="...">
  <img class="card-image" src="...">
  <div class="card-description">
    <p>First image description</p>
  </div>
  <div class="card-description">
    <p>Second image description</p>
  </div>
  <div class="card-description">
    <p>Third image description</p>
  </div>
</div>
question from:https://stackoverflow.com/questions/65617186/cannot-wrap-divs-correctly-with-nextuntil

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Unfortunately nextUntil() won't work in this case as the .card-image and card-description elements are not adjacent siblings.

To work around this you can instead loop through all the .card-image elements, appending them to a new .card div along with the relevant .card-description which matches the index of the current image. Try this:

let $cards = $('.cards');
let $descriptions = $('.card-description');
$cards.children('.card-image').each(function(i) {
  let $card = $('<div class="card" />').appendTo($cards);
  $card.append(this, $descriptions.eq(i));
});
.card { border: 1px solid #C00; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="cards">
  <img class="card-image" src="..." />
  <img class="card-image" src="..." />
  <img class="card-image" src="..." />
  <div class="card-description">
    <p>First image description</p>
  </div>
  <div class="card-description">
    <p>Second image description</p>
  </div>
  <div class="card-description">
    <p>Third image description</p>
  </div>
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...