Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML 속성 tabindex가 있는지 테스트하고 값을 가져옵니다.

<시간/>

HTML 속성의 값을 얻으려면 다음을 시도하십시오.

$("#demo").attr("tabindex")

attr() 메서드는 일치하는 집합의 첫 번째 요소에서 속성 값을 가져오거나 일치하는 모든 요소에 속성 값을 설정하는 데 사용할 수 있습니다.

hasAttribute() 메서드를 사용하여 요소에 대한 속성이 있는지 확인할 수도 있습니다.

예시

다음 코드를 실행하여 hasAttribute() 메서드를 사용하는 방법을 알아보세요.

<!DOCTYPE html>
<html>
   <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
            $('button').on('click', function() {
               if (this.hasAttribute("style")) {
                  alert('True')
               } else {
                  alert('False')
               }
            })
         });
      </script>
   </head>

   <body>
      <button class = 'button' style = 'background-color:blue;'>
         Button
      </button>
      <button class = 'button'>
         Button 2
      </button>
   </body>
</html>