HTML | <formulario> validar atributo

El atributo HTML <form> novalidate se utiliza para especificar que los datos del formulario no deben validarse al enviar el formulario. Es un atributo booleano. 

Sintaxis: 

 <form novalidate> 

Ejemplo-1: Este ejemplo ilustra el uso del atributo novalidate en el elemento de formulario

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML <form> novalidate Attribute
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
 
    <h2>
        HTML <form> novalidate Attribute
    </h2>
 
    <form action="#"
          method="get"
          target="_self"
          novalidate>
        Name:
        <input type="text">
        <input type="submit"
               id="Geeks"
               name="myGeeks"
               value="Submit @ geeksforgeeks"
               formTarget="_blank">
    </form>
 
</body>
 
</html>

Producción:

  

Navegadores compatibles: los navegadores compatibles con el atributo novalidate del formulario HTML se enumeran a continuación:

  • Google Chrome 10.0 y superior
  • Borde 12.0 y superior
  • Internet Explorer 10.0 y superior
  • Firefox 4.0 y superior
  • Ópera 15.0 y superior
  • Safari 10.1 y superior

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 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 *