function toText()
{
var convertHTML =$('#mainContent').html();
var ele = $(convertHTML + " > span").each(function(){
$(this).replaceWith($(this).text());
});
console.log(ele);
}
我的目标是替换以下内容
<div id="mainContent">
test
<br>
1234
<br>
<span class="underline">test</span>
<br>
<span class="underline">1234</span>
</div>
并希望我的功能输出测试<br> 1234 <br> test <br> 1234
这就是为什么我不能只使用 text() 因为它也带走了<br>
!