$("#" + mainContent).children("span").replaceWith(function(){ return $(this).text(); });
使用上面的代码行,我似乎无法用文本值替换所有跨度。
html看起来像
<div id="bla" contenteditable="true">
<span> bla finds this one</span>
<div>
<span> doesnt find me </span>
</div>
</div>
如何选择 div "bla" 中的所有跨度并将它们全部替换?
替换工作只是查找没有。