Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Element.removeAttribute()

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

removeAttribute는 특정 엘리먼트의 속성을 제거합니다.

구문 ( Syntax )

element.removeAttribute(
attrName); 
  • attrName은 엘리먼트에서 제거하고 싶은 속성(attribute)의 이름(문자열)입니다.

예제 ( Example )

// <div id="div1" align="left" width="200px"> 
document.getElementById("div1").removeAttribute("align"); 
// now: <div id="div1" width="200px">

노트 ( Notes )

setAttribute의 값(value)를 null 값으로 수정하지말고, removeAttribute를 사용하세요 .

엘리먼트에 없는 속성을 제거하려고 시도해도, 예외(exception)처리되지 않습니다.

DOM methods dealing with element's attributes:

Not namespace-aware, most commonly used methods Namespace-aware variants (DOM Level 2) DOM Level 1 methods for dealing with Attr nodes directly (seldom used) DOM Level 2 namespace-aware methods for dealing with Attr nodes directly (seldom used)
setAttribute (DOM 1) setAttributeNS setAttributeNode setAttributeNodeNS
getAttribute (DOM 1) getAttributeNS getAttributeNode getAttributeNodeNS
hasAttribute (DOM 2) hasAttributeNS - -
removeAttribute (DOM 1) removeAttributeNS removeAttributeNode -

Specification

DOM Level 2 Core: removeAttribute (introduced in DOM Level 1 Core)

문서 태그 및 공헌자

 이 페이지의 공헌자: HyunkwonEddie-Cho
 최종 변경: HyunkwonEddie-Cho,