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

จะสร้างลำดับแท็บขององค์ประกอบใน 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>