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

คุณสมบัติการโฟกัสอัตโนมัติ URL อินพุต HTML DOM


คุณสมบัติการโฟกัสอัตโนมัติของ HTML DOM Input URL ตั้งค่า/ส่งคืนว่าอินพุต URL นั้นเน้นที่การโหลดหน้าแรกหรือไม่

ไวยากรณ์

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

  • คืนค่าบูลีน - จริง/เท็จ
inputURLObject.autofocus
  • การตั้งค่าออโต้โฟกัสเป็น booleanValue
inputURLObject.autofocus = booleanValue

ค่าบูลีน

ที่นี่ “booleanValue” สามารถเป็นดังต่อไปนี้ -

booleanValue รายละเอียด
จริง มันกำหนดว่าอินพุตจะถูกโฟกัสอัตโนมัติเมื่อโหลดหน้าเว็บ
เท็จ เป็นค่าเริ่มต้นและอินพุตไม่ได้โฟกัสอัตโนมัติ

ตัวอย่าง

ให้เราดูตัวอย่างของ ป้อน URL ออโต้โฟกัส ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Input URL autofocus</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>URL-autofocus</legend>
<label for="URLSelect">URL :
<input type="url" id="URLSelect" placeholder="https://www.google.com" autofocus>
</label>
<input type="button" onclick="removeAutofocus()" value="Remove Autofocus">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputURL = document.getElementById("URLSelect");
   divDisplay.textContent = 'Autofocus: '+inputURL.autofocus;
   function removeAutofocus() {
      inputURL.autofocus = false;
      divDisplay.textContent = 'Autofocus: '+inputURL.autofocus;
   }
</script>
</body>
</html>

ผลลัพธ์

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

ก่อนคลิก 'ลบออโต้โฟกัส' ปุ่ม −

คุณสมบัติการโฟกัสอัตโนมัติ URL อินพุต HTML DOM

หลังจากคลิก 'ลบออโต้โฟกัส' ปุ่ม −

คุณสมบัติการโฟกัสอัตโนมัติ URL อินพุต HTML DOM