任何人都可以帮我处理这个 jquery,我需要删除其他标签内的标签,例如,如果 ap 标签在 h1 标签内,则删除 p 标签但保留内容,我尝试了几种方法,但我能想出的最好方法是也删除内容
$("#textEditor").contents().find("h1:has(p)").find("p").remove();
编辑这里是我想验证的标记
<h1>This is an example <strong> of bad markup</strong>
<p>need to remove these p tags but keep content</p></h1>