原生js的remove方法代表刪除節點


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.pname{
color:#f60;
}
</style>
 
</head>
<body>
<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>
<p class="pname">這是一個段落。</p>
<p>這是另一個段落。</p>
<button class="btn" onclick="show()">刪除所有 p 元素</button>
</body>
<script>
 
var pName=document.getElementsByClassName('pname')[0];
function show(){
pName.nextElementSibling.remove()
 
}
 
 
</script>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM