JavaScript를 사용하여 요소의 모든 속성을 얻는 방법은 무엇입니까?
3532 단어 javascript
DOM 요소의 모든 속성을 가져오려면 JavaScript를 사용하여 요소에
attributes
속성을 사용할 수 있습니다.다음과 같이 사용자 정의 속성
h1
및 data-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 의 실제 예를 참조하십시오.
😃 유용하셨다면 공유해 주세요.
Reference
이 문제에 관하여(JavaScript를 사용하여 요소의 모든 속성을 얻는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/melvin2016/how-to-get-all-the-attributes-of-an-element-using-javascript-1gk0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)