Home>Article>Web Front-end> How to delete node in javascript
Javascript method to delete a node: 1. Use the remove() method to delete all elements on the parent node, including all text and child nodes; 2. Use the removeChild() method to delete a child node on the parent node.
The operating environment of this article: Windows 7 system, JavaScript version 1.8.5, DELL G3 computer.
Method 1: Use remove() to delete a node
The remove() method can be used to delete all elements on the parent node, including all text and child nodes.
Example: Delete all child nodes li on the ul node
Rendering:
Method 2: Use removeChild ()Delete node
removeChild() method is used to delete a child node on the parent node.
Example: Delete all child nodes li on the ul node
Rendering:
[Recommended learning:js Basic tutorial】
The above is the detailed content of How to delete node in javascript. For more information, please follow other related articles on the PHP Chinese website!