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

HTML DOM Input Number คุณสมบัติออโต้โฟกัส


คุณสมบัติออโต้โฟกัสหมายเลขอินพุต HTML DOM ส่งคืนและแก้ไขว่าฟิลด์หมายเลขอินพุตควรได้รับการโฟกัสหรือไม่เมื่อโหลดหน้าเว็บ

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

  • กำลังกลับออโต้โฟกัส

object.autofocus
  • 2. การปรับเปลี่ยนโฟกัสอัตโนมัติ

object.autofocus = true | false

ตัวอย่าง

ให้เราดูตัวอย่างคุณสมบัติออโต้โฟกัสหมายเลขอินพุต HTML DOM -

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM autofocus property</title>
<style>
   body{
      text-align:center;
      background-color:#1b203a;
      color:#ff8741;
   }
   p{
      font-size:1.2rem;
   }
   input{
      border:none;
      background-color:#ffffff4a;
      height:1.2rem;
      padding:8px;
      color:#fff;
      font-weight:bold;
      font-size:1rem;
   }
   button{
      background-color:#db133a;
      color:#fff;
      padding:8px;
      border:none;
      width:120px;
      margin:0.5rem;
      border-radius:50px;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>autofocus Property Example</h1>
<p>Hi! click on disable button to disable autofocus</p>
<input type="number" autofocus value="23450004">
<br>
<button onclick="disable()">Disable</button>
   <script>
      function disable() {
         document.querySelector("input").autofocus = false;
      }
   </script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HTML DOM Input Number คุณสมบัติออโต้โฟกัส

คลิกที่ปุ่ม "ปิดใช้งาน" เพื่อปิดใช้งานการโฟกัสอัตโนมัติในช่องป้อนข้อมูลเดือน

HTML DOM Input Number คุณสมบัติออโต้โฟกัส