[자바 스크립트] 16. 삭제하기

백하림's avatar
Apr 04, 2025
[자바 스크립트] 16. 삭제하기
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .box { border: 1px solid black; padding: 10px; } </style> </head> <body> <h1>삭제하기</h1> <button onclick="del()">remove로 삭제하기</button> <div class="box" id="outerBox"> <div class="box" id="innerBox1"> 내부박스1 </div> </div> <script> function del() { let el = document.querySelector("#innerBox1"); el.remove(); } </script> </body> </html>
notion image
notion image
Share article

harimmon