當頁面在沒有 HTML 中支援 JavaSript 時載入時,自動聚焦在文字框中?


autofocus 屬性是一個布林屬性。當出現時,它指定當頁面載入時 <input> 元素應該自動獲得焦點。以下給出示例

<!DOCTYPE html>
<html>
   <body>
      <form action = "/new.php">
         First Name: <input type = "text" name = "fname" autofocus><br>
         Last Name: <input type = "text" name = "lname"><br>
         <input type="submit">
      </form>
   </body>
</html>

更新於: 2020-06-04

135 次觀看

開始你的 職業生涯

透過完成課程獲得認證

開始學習
廣告
© . All rights reserved.