Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะค้นหาจุดยึดจำนวนหนึ่งในเอกสารใน JavaScript ได้อย่างไร


แท็ก Anchor เป็นเรื่องปกติมากเมื่อต้องจัดการกับเอกสารในจาวาสคริปต์ Javascript ได้จัดเตรียม document.anchors .length เพื่อรับจำนวนจุดยึดในเอกสาร วิธีนี้จะไม่มีผลกับโค้ดบรรทัดอื่นๆ ในโปรแกรม มันแสดงความยาวของแท็กสมอเท่านั้น

ไวยากรณ์

length = document.anchors.length;

ส่งกลับเฉพาะจำนวน แท็กสมอ โดยไม่กระทบต่อโค้ดบรรทัดอื่น

ตัวอย่าง-1

ในตัวอย่างต่อไปนี้ มีการใช้แท็กสมอสองแท็กและความยาวแสดงโดยใช้คุณสมบัติ DOM เอกสาร .anchors.length ดังแสดงในผลลัพธ์

<html>
<body>
   <a name="Tutor">Tutorix</a><br>
   <a name="Totorial">Tutorialspoint</a><br>
<p id="anchors"></p>
<script>
   document.getElementById("anchors").innerHTML =
   "The number of anchors are: " + document.anchors.length;
</script>
</body>
</html>

ผลลัพธ์

Tutorix
Tutorialspoint
The number of anchors are: 2

ตัวอย่าง-2

ในตัวอย่างต่อไปนี้ มีการใช้แท็กสมอสามแท็กและความยาวแสดงโดยใช้ document.anchors.length ดังแสดงในผลลัพธ์

<html>
<body>
   <a name="Tutor">Tutorix</a><br>
   <a name="Totorial">Tutorialspoint</a><br>
   <a name="Totorials">Tutorialspoint private ltd</a><br>
<script>
   document.write(document.anchors.length);
</script>
</body>
</html>

ผลลัพธ์

Tutorix
Tutorialspoint
Tutorialspoint private ltd
3