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

จะระบุการใช้งานขององค์ประกอบโดยใช้ลำดับแท็บ (ปุ่มแป้นพิมพ์แท็บ) ใน HTML ได้อย่างไร


ใช้ ดัชนีแท็บ แอตทริบิวต์ใน HTML เพื่อกำหนดลำดับแท็บขององค์ประกอบ ให้สิทธิ์คุณในการเปลี่ยนลำดับการใช้ TAB บนแป้นพิมพ์

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อสร้างลำดับแท็บขององค์ประกอบใน HTML −

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <a href = "https://www.tutorialspoint.com/current_affairs/index.htm" tabindex="1">Current Affairs</a>
      <br>
      
      <a href = "https://www.tutorialspoint.com/codingground.htm" tabindex="2">Coding Ground</a>
      <br>
      
      <a href = "https://www.tutorialspoint.com/verbal_ability/index.htm" tabindex="4">Verbal Ability</a>
      <br>
      
      <a href = "https://www.tutorialspoint.com/quantitative_aptitude/index.htm" tabindex="3">Quantitative Aptitude</a>
      <br>
      
      <p>We have changed the tab order above. Use TAB on keyboard to view the changes.</p>
   </body>
</html>