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