Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

ChildNode.remove()

这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀.由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变.

ChildNode.remove() 方法会将自己从所在的 DOM 树中删除。

语法

elementNodeReference.remove(); 

示例

<div id="div-01">Here is div-01</div>
<div id="div-02">Here is div-02</div>
<div id="div-03">Here is div-03</div>
var el = document.getElementById('div-01');
el.nextElementSibling.remove(); // id 为 'div-02' 的 div 被删掉了

规范

规范链接 规范状态 备注
DOM
ChildNode.remove()
Living Standard  

游览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (on Element) 23.0 23.0 (23.0) 未实现 10.0 7.0
Support on CharacterData and DocumentType 29.0 23.0 (23.0) 未实现 16.0 7.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (on Element) (Yes) 23.0 (23.0) 未实现 10.0 未实现
Support on CharacterData and DocumentType (Yes) 23.0 (23.0) 未实现 16.0 未实现

相关链接

文档标签和贡献者

标签: 
 此页面的贡献者: teoli, khalid32, ziyunfei, Darrel.Hsu
 最后编辑者: khalid32,