JavaScript를 사용하여 요소의 모든 속성을 얻는 방법은 무엇입니까?

3532 단어 javascript
Originally posted here!

DOM 요소의 모든 속성을 가져오려면 JavaScript를 사용하여 요소에 attributes 속성을 사용할 수 있습니다.

다음과 같이 사용자 정의 속성h1data-color가 있는 data-maxlength 태그가 있다고 가정해 보겠습니다.

<h1 data-color="red" data-maxlength="50">Heading</h1>


요소의 attributes 속성을 사용하여 모든 속성을 가져오자.

// first get the reference to h1 element
const h1 = document.querySelector("h1");

// get all attributes
// using attributes property
const h1TagAttributes = h1.attributes;

console.log(h1TagAttributes);


속성은 속성을 NamedNodeMap 배열과 유사한 객체로 반환합니다.

따라서 쉽게 만들기 위해 for...of 반복문을 사용하여 각 속성을 매핑하고 각 속성 이름과 값을 가져옵니다.

// first get the reference to h1 element
const h1 = document.querySelector("h1");

// get all attributes
// using attributes property
const h1TagAttributes = h1.attributes;

// loop through each attribute
for (let attribute of h1TagAttributes) {
  console.log(attribute.name); // attribute name
  console.log(attribute.value); // attribute value
}


JSBin 의 실제 예를 참조하십시오.

😃 유용하셨다면 공유해 주세요.

좋은 웹페이지 즐겨찾기