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

JavaScript에서 링크의 유형 속성 값을 얻는 방법은 무엇입니까?


JavaScript에서 링크의 type 속성 값을 가져오려면 type 재산. type 속성은 문서가 html(text/html) 또는 css(text/css) 등임을 알려주는 데 사용됩니다.

예시

다음 코드를 실행하여 링크의 유형 속성 값을 얻을 수 있습니다.

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" type="text/html" target= "_blank" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myVal = document.getElementById("anchorid").type;
         document.write("Value of type attribute: "+myVal);
      </script>
   </body>
</html>