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

การใช้แอตทริบิวต์ HTML5 ออโต้โฟกัส


HTML5 แนะนำคุณลักษณะใหม่ที่เรียกว่าออโต้โฟกัสที่จะใช้ดังนี้:

<input type = "text" name = "search" autofocus/>

แอตทริบิวต์นี้รองรับเบราว์เซอร์ Mozilla, Safari และ Chrome เวอร์ชันล่าสุดเท่านั้น

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีทำงานกับแอตทริบิวต์ออโต้โฟกัส:

<!DOCTYPE HTML>
<html>
   <body>
      <form action = "/cgi-bin/html5.cgi" method = "get">
         Enter email : <input type = "text" name = "newinput" autofocus/>
         <p>Try to submit using Submit button</p>
         <input type = "submit" value = "submit" />
      </form>
   </body>
</html>