Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để hiển thị số lượng liên kết trong một tài liệu bằng JavaScript?


Để nhận số lượng liên kết trong JavaScript, hãy sử dụng liên kết thuộc tính có chiều dài tài sản.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để hiển thị số lượng liên kết trong tài liệu -

<!DOCTYPE html>
<html>
   <body>
      <a href="https://www.tutorialspoint.com/php">PHP</a>
         <br>
      <a href="https://www.tutorialspoint.com/java/">Java</a>
      <br>
      <a href="https://www.tutorialspoint.com/html5/">HTML</a>
      <br>
      <a href="https://www.tutorialspoint.com/css/">CSS</a>
      <script>
         var val = document.links.length;
         document.write("<br>Number of links in the document: "+val);
      </script>
   </body>
</html>