&a"/>   &a">

首頁 >web前端 >html教學 >當頁面載入時,如何在文字方塊中放置遊標(自動對焦)?

當頁面載入時,如何在文字方塊中放置遊標(自動對焦)?

WBOY
WBOY轉載
2023-09-14 21:53:02967瀏覽

當頁面載入時,如何在文字方塊中放置遊標(自動對焦)?

當頁面載入時,使用 autofocus 屬性將遊標置於文字方塊中。 autofocus 屬性是一個布林屬性。如果存在,它指定 元素在頁面載入時應自動獲得焦點。這是一個範例 -

範例

<!DOCTYPE html>
<html>
   <body>

      <form action = "/new.php">
         Name: <input type = "text" name = "name" autofocus><br>
         Subject: <input type = "text" name = "sub"><br>
         <input type = "submit">
      </form>

   </body>
</html>

以上是當頁面載入時,如何在文字方塊中放置遊標(自動對焦)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除