Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有:
<a href=''> <div>hello</div> </a>
我想删除 A 元素以便获得:
<div>hello</div>
这可以在jQuery中完成吗?
使用unwrap()
$('div').unwrap();
现场演示
使用 jquery http://api.jquery.com/unwrap/的 unwrap()
该.unwrap()方法删除元素的父元素。
.unwrap()