<html> <body> <div id="content"> <p>Chelsea</p> <p>Manchester UTD</p> <p>Arsenal</p> </div> <input type="button" value="Xóa Nodes" id="remove"/> <script language="javascript"> // Lấy button var button = document.getElementById("remove"); // Thêm sự kiện click cho button button.addEventListener("click", function(){ // Lấy thẻ cần remove var Node_name = document.querySelector("div p"); // xóa node đầu tiên document.getElementById("content").removeChild(Node_name); }); </script> </body> </html>