The name
property sets or gets the name attribute of a password field.
The name
attribute identifies
form data after it has been submitted to the server.
We can also use the name value to reference form data using JavaScript on the client side.
name |
Yes | Yes | Yes | Yes | Yes |
Return the name property.
var v = passwordObject.name
Set the name property.
passwordObject.name=name
Value | Description |
---|---|
name | Set the name of the password field |
A String type value representing the name of the password field.
The following code shows how to change the name of a password field.
<!DOCTYPE html>
<html>
<body>
<!--from www .j a va 2 s.c o m-->
<form>
Password: <input type="password" id="myPsw" name="pw">
</form>
<button onclick="display()">Display name</button>
<button onclick="change()">Change name</button>
<script>
function display() {
var x = document.getElementById("myPsw").name;
console.log("The name is: " + x);
}
function change() {
var x = document.getElementById("myPsw").name = "newPasswordName";
console.log("The name was changed to: " + x);
}
</script>
</body>
</html>
The code above is rendered as follows:
The following code shows how to get the name of a password field.
<!DOCTYPE html>
<html>
<body>
Password: <input type="password" id="myPsw" name="pw">
<button onclick="myFunction()">test</button>
<p id="demo"></p>
<script>
function myFunction() {<!-- ww w . j a va2 s . c o m-->
var x = document.getElementById("myPsw").name;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
The code above is rendered as follows: