• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>JavaScript Node Manage</title>
7
</head>
8
​
9
<body>
10
​
11
    <h1>removeAttribute() 메소드</h1>
12
    <button onclick="remove()">속성 노드 삭제!</button>
13
    <p id="text" style="color:red; background-color:lemonchiffon;">이 단락의 속성이 제거될 것입니다.</p>
14
​
15
    <script>
16
        function remove() {
17
            var text = document.getElementById("text");     // 아이디가 "text"인 요소를 선택함.
18
            text.removeAttribute("style");                  // 해당 요소의 "style" 속성을 제거함.
19
        }
20
    </script>
21
    
22
</body>
23
​
24
</html>