试图找到一种方法在代码中的 hr 标记之间包装所有内容,但到目前为止还没有。对代码有什么建议吗?
这就是我现在正在做的事情(也作为小提琴):
$('hr').each(function() {
$(this).next('hr').wrapAll('<div style="background-color:yellow"></div>');
});
Text
<hr>
Text1
Text2
<hr>
Text3
<hr>
Text4
Text5
<hr>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>