ในการรับจำนวนลิงก์ใน JavaScript ให้ใช้ ลิงก์ คุณสมบัติ ความยาว ทรัพย์สิน
ตัวอย่าง
คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อแสดงจำนวนลิงก์ในเอกสาร -
<!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>