JavaScript를 사용하여 DOM의 요소에 특정 속성이 있는지 확인하는 방법은 무엇입니까?

1970 단어 javascript
Originally posted here!
요소의 JavaScript에 특정 속성이 있는지 확인하려면 요소hasAttribute() 메서드를 사용합니다.h1 요소가 다음과 같은 사용자 정의 속성data-color="red"을 가지고 있다고 가정하면
<h1 data-color="red">Heading</h1>
현재 data-color 방법으로 h1 표기 요소에 사용자 정의 속성이 존재하는지 확인합니다.
// get the reference to the h1 tag element
const h1 = document.querySelector("h1");

// chcek if h1 tag has attribute : data-color
const isPresent = h1.hasAttribute("data-color");

console.log(isPresent); // true;
  • hasAttribute() 방법은 속성의 유효한 이름을 문자열로 받아들인다.
  • 방법은 브리치hasAttribute()가 존재하지만 true는 존재하지 않는다.
  • JSBin의 실시간 예제를 참조하십시오.

    만약 네가 이것이 매우 유용하다고 생각한다면 마음대로 공유해라😃.

    좋은 웹페이지 즐겨찾기