Home > Web Front-end > JS Tutorial > body text

Summary of JS methods to delete DOM object nodes

php中世界最好的语言
Release: 2018-06-11 14:29:45
Original
2008 people have browsed it

This time I will bring you a summary of the method of deleting DOM object nodes in JS. What are the precautions for deleting DOM object nodes in JS? The following is a practical case, let's take a look.

1 Introduction

Deleting nodes is achieved by using the removeChild() method.

removeChild() method is used to delete a child node.

obj. removeChild(oldChild)oldChild: Indicates the node that needs to be deleted.

Second application

Delete the node. This example will dynamically delete the page through the removeChild() method of the DOM object. Selected text.

Three Code

<!DOCTYPE html>
<html>
<head>
<title>w删除节点</title>
<script language="javascript">
<!--
function delNode()
{
var deleteN=document.getElementById(&#39;di&#39;);
if(deleteN.hasChildNodes())
{
  deleteN.removeChild(deleteN.lastChild);
}
}
-->
</script>
</head>
<body>
<h1>删除节点</h1>
<p id="di">
<p>第一行文本</p>
<p>第二行文本</p>
<p>第三行文本</p>
</p>
<form>
<input type="button" value="删除" onclick="delNode();"/>
</form>
</body>
</html>
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Vue Sortable project actual code

How to use vue mint-ui in the project

The above is the detailed content of Summary of JS methods to delete DOM object nodes. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!