출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]
<!DOCTYPE html>
<html lang="">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Javascript Window Object</title>

    <script>

        window.onload = function() {
            
            // 삭제버튼 : 이벤트 설정
            document.querySelector('input[type=submit]').onclick = function(){
               
                alert('h1');
                
                // 삭제 대상 
                var remove_h1 = document.getElementById('header-1');
                
                // 삭제 대상을 포함하는 문서객체
                var parent = document.body;
                
                parent.removeChild(remove_h1);
                
                
            };
        };
    </script>


</head>

<body>

    <div id="header-1">1</div>
    <div id="header-2">2</div>

    <br>
    
    <input type="submit" value="H1-0 삭제">



</body></html>

+ Recent posts