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

JavaScript에서 문서의 링크 수를 찾는 방법은 무엇입니까?


자바스크립트 DOM 문서에 대한 세부 정보를 얻기 위해 많은 속성을 제공했습니다. document.links.length라는 메서드를 제공했습니다. 문서에 포함된 링크 수를 가져옵니다. 이 방법은 코드의 정상적인 기능을 방해하지 않습니다.

예시-1

다음 예에서는 코드에 세 개의 링크가 제공됩니다. DOM 속성 사용 document.links.length 표시된 대로 링크 수가 출력에 표시되었습니다.

<html>
<body>
   <a href="https://www.tutorialspoint.com/javascript/index.htm">Javascript</a><br>
   <a href="https://www.tutorialspoint.com/php/index.htm">Php</a><br>
   <a href="https://www.tutorialspoint.com/java8/index.htm">Php</a><br>
<p id="links"></p>
<script>
   document.getElementById("links").innerHTML =
   "The number of links are: " + document.links.length;
</script>
</body>
</html>

출력

Javascript
Php
Java
The number of links are: 3


예시-2

다음 예에서는 코드에 두 개의 링크가 제공됩니다. DOM 속성 document.links.length 사용 표시된 대로 링크 수가 출력에 표시되었습니다.

<html>
<body>
   <a href="https://www.tutorialspoint.com/javascript/index.htm">Javascript</a><br>
   <a href="https://www.tutorialspoint.com/bitcoin/index.htm">Bitcoin</a></br>
<script>
   document.write("The number of links are: " + document.links.length);
</script>
</body>
</html>

출력

Javascript
Bitcoin
The number of links are: 2