當頁面載入時,使用 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中文網其他相關文章!