예
제거 class 에서 속성 노드 <h1> 요소 :
var elmnt = document.getElementsByTagName("H1")[0]; // Get the first
<h1> element in the document
var attr = elmnt.getAttributeNode("class");
// Get the class attribute node from <h1>
elmnt.removeAttributeNode(attr);
// Remove the class attribute node from <h1>
속성 노드를 제거하기 전에 :
Hello World
속성 노드를 제거한 후 :
Hello World
»그것을 자신을 시도 정의 및 사용
removeAttributeNode() 메소드는 제거 specified 요소의 속성 및 반환 removed int로서, 속성 의 Attr 노드 객체 .
이 방법과 차이점 removeAttribute() 메소드는 점이다 removeAttribute() 이 방법은 지정된 Attr의 객체를 제거하는 동안있어서, 지정된 이름 속성을 제거한다. 결과는 동일합니다. 또한, removeAttribute() 이 메소드는 반환 상태에있어서, 어떠한 리턴 값이없는 removed 지정해 Attr 객체로서, 속성.
팁 : 사용 getAttributeNode() 요소의 속성 노드를 반환하는 방법을.
팁 : 사용 setAttributeNode() 요소에 속성 노드를 추가하는 방법을.
브라우저 지원
방법 | |||||
---|---|---|---|---|---|
removeAttributeNode() | 예 | 예 | 예 | 예 | 예 |
통사론
element .removeAttributeNode( attributenode )
매개 변수 값
매개 변수 | 유형 | 기술 |
---|---|---|
attributenode | Attr object | 필요합니다. 제거 할 속성 노드 |
기술적 세부 사항
반환 값 : | 나타내는 Attr의 객체 removed 특성 노드 |
---|---|
DOM 버전 | 코어 레벨 1 요소 개체 |
더 예
예
제거] href 에서 속성 노드 <a> 요소를 :
var elmnt = document.getElementById("myAnchor"); // Get the <a> element
with id="myAnchor"
var attr = elmnt.getAttributeNode("href");
// Get the href attribute node from <a>
elmnt.removeAttributeNode(attr);
// Remove the href attribute node from <a>
속성 노드를 제거하기 전에 :
속성 노드를 제거한 후 :
Go to w3ii.com
»그것을 자신을 시도 관련 페이지
HTML 자습서 : HTML 속성
HTML DOM 참조 : HTML DOM은 객체 속성
HTML DOM 참조 : href="met_element_removeattribute.html"> removeAttribute() Method
HTML DOM 참조 : href="met_element_getattributenode.html"> getAttributeNode() Method
HTML DOM 참조 : href="met_element_setattributenode.html"> setAttributeNode() Method