Home  >  Article  >  Web Front-end  >  HTML DOM Input Password autofocus attribute

HTML DOM Input Password autofocus attribute

WBOY
WBOYforward
2023-08-20 16:17:141344browse

HTML DOM input Password autofocus attribute is associated with the autofocus attribute of the HTML d5fd7aea971a85678ba271703566ebfd element. This property sets or returns whether the password field should be automatically focused when the page loads.

Syntax

The following is the syntax for setting the autofocus attribute:

Setting the autofocus attribute-

passwordObject.autofocus = true|false

Here, true means that the password field should get focus, false means no. Set to false by default.

Example

Let’s look at an example of the Input Password autofocus property -

<!DOCTYPE html>
<html>
<body>
<h1>Input password autofocus property</h1>
Password: <input type="password" id="PASS" autofocus>
<br><br>
<button onclick="FocusVal()">CHECK FOCUS</button>
<p id="Sample"></p>
<script>
   function FocusVal() {
      var P = document.getElementById("PASS").autofocus;
      document.getElementById("Sample").innerHTML = "The password field has autofocus property set to "+P;
   }
</script>
</body>
</html>

Output

This will produce the following output−

HTML DOM Input Password autofocus 属性

When clicking the CHECK FOCUS button−

HTML DOM Input Password autofocus 属性

In the above example−

we create a type For the input field of "password", the id is "Pass", and the auto-focus attribute is enabled, that is, set to true −

Password: <input type="password" id="PASS" autofocus>

We next create a button CHECK FOCUS, which will execute FocusVal when the user clicks () method−

<button onclick="FocusVal()">CHECK FOCUS</button>

The FocusVal() method gets the input element with type password using the getElementById() method and gets its autofocus property. The autofocus property returns true and false depending on the element autofocus attribute value. This value is assigned to variable P and displayed in the paragraph with id “Sample” using its innerHTML property −

function FocusVal() {
   var P = document.getElementById("PASS").autofocus;
   document.getElementById("Sample").innerHTML = "The password field has autofocus property set to "+P;
}

The above is the detailed content of HTML DOM Input Password autofocus attribute. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete