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.
可能重复: JavaScript:按 id 删除元素
我只知道他们各自的id,并不具体了解他们的父节点......
您可以parentNode在元素上使用来获取其父级,并removeChild在其上使用。
parentNode
removeChild
var el = document.getElementById( 'id' ); el.parentNode.removeChild( el );
在 jQuery 中,就$('#your_id').remove();可以了。
$('#your_id').remove();