¿Cómo especificar el nombre de un elemento de entrada?

En este artículo, especificaremos el nombre de un elemento de entrada usando HTML. Para agregar el nombre de un elemento de entrada, usamos el atributo de nombre HTML <input> . El atributo de nombre HTML <input> se utiliza para especificar un nombre para un elemento <input>. Se utiliza para hacer referencia a los datos del formulario después de enviar el formulario o para hacer referencia al elemento en JavaScript.

Sintaxis:

<input name="name">

Valores de atributo: contiene un nombre de valor único que describe el nombre del elemento <input>.

Ejemplo 1:

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <title>
        How to specify the name of an
        input element using HTML?
    </title>
</head>
  
<body style="text-align: center;">
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        How to specify the name of an
        input element using HTML?
    </h3>
  
    <form id="myGeeks">
        <label for="GFG">Username</label>
        <input type="text" id="GFG" name="GFG">
        <br><br>
  
        <label for="GFG1">Password</label>
        <input type="password" id="GFG1" name="GFG1">
        <br><br>
  
        <input type="submit" name="submit">
    </form>
</body>
  
</html>

Producción:

Ejemplo-2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Input name Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1>GeeksForGeeks</h1> 
  
    <h2>HTML Input name Attribute</h2> 
    <form id="myGeeks"> 
        <input type="text"
            id="text_id"
            name="geeks"
            pattern="[A-Za-z]{3}"
            value="Manas Chhabra"> 
    </form> 
    <br> 
</body> 
  
</html> 

Producción:

Publicación traducida automáticamente

Artículo escrito por vkash8574 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *