El atributo HTML <button> formnovalidate se utiliza para especificar que los datos del formulario no deben validarse al enviar el formulario. Este atributo es un atributo booleano. Anula la característica del atributo novalidate del formulario. Solo se puede usar con el <button type=”submit”> .
Sintaxis:
<button type="submit" formnovalidate>
Ejemplo: Este ejemplo ilustra el uso del atributo formnovalidate en el elemento <Button>.
html
<!DOCTYPE html> <html> <head> <title> HTML Button formNoValidate Attribute </title> </head> <body style="text-align:center;"> <h1> GeeksForGeeks </h1> <h2> HTML Button formNoValidate Attribute </h2> <form action="#" method="get" target="_self"> Name: <input type="text"> <br> Password: <input type="password"> <br> <br> <button type="submit" id="Geeks" name="myGeeks" value="Submit @ geeksforgeeks" formTarget="_blank" Formnovalidate> Submith without Validation </button> <br> <br> <button type="submit"> Submit with validation </button> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo formnovalidate del botón HTML se enumeran a continuación:
- Google Chrome
- Borde 12
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA