jQuery 效果参考手册
删除所有 <p> 元素的父元素:
$("button").click(function(){ $("p").unwrap(); });
亲自试一试
unwrap() 方法删除被选元素的父元素。
$(selector).unwrap()