Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用下面的代码:
$('.graph-img').each(function(index) { $(this).prev('h2,h3,h4,h5,h6,p').prevUntil('.graph-img').andSelf().not('h1').wrapAll("<div class='prevent-break'>"); });
它包装了所有元素,但不包括.graph-img当前引用的 this。任何想法为什么?
.graph-img
andSelf不添加第一组元素,而是添加前一个元素。
andSelf
您可以.add(this)在此处使用。
.add(this)
请注意,andSelf已被弃用,取而代之的是addBack其名称的误导性较小。
addBack