La propiedad requerida de tiempo de entrada de DOM en HTML DOM se usa para establecer o devolver si el campo de tiempo de entrada debe completarse o no al enviar el formulario . Esta propiedad se utiliza para reflejar el atributo requerido de HTML.
Sintaxis:
- Devuelve la propiedad requerida Tiempo de entrada.
timeObject.required
- Se utiliza para establecer la propiedad requerida de Tiempo de entrada.
timeObject.required = true|false
Valores de propiedad:
- true: Especifica que el campo Hora debe ser llenado antes de enviar el formulario.
- false: Es el valor por defecto. Especifica que el campo Hora no debe completarse antes de enviar el formulario.
Valor devuelto: Devuelve un valor booleano que representa que el campo de tiempo debe completarse o no antes de enviar el formulario.
Ejemplo-1: Este ejemplo devuelve la propiedad requerida de Hora de entrada.
<!DOCTYPE html> <html> <head> <title> DOM Input Time required Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Time required Property </h2> <label for="uname" style="color:green"> <b>Enter time</b> </label> <input type="time" id="gfg" placeholder="Enter time" step="5" required> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="font-size:24px; color:green'"> </p> <script> function geeks() { var link = document.getElementById( "gfg").required; document.getElementById( "GFG").innerHTML = link; } </script> </center> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo-2: Este ejemplo ilustra cómo establecer la propiedad de tiempo de entrada requerida.
<!DOCTYPE html> <html> <head> <title> DOM Input Time required Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Time required Property </h2> <label for="uname" style="color:green"> <b>Enter time</b> </label> <input type="time" id="gfg" placeholder="Enter time" step="5" required> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="font-size:24px; color:green'"> </p> <script> function geeks() { var link = document.getElementById( "gfg").required = false; document.getElementById( "GFG").innerHTML = link; } </script> </center> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con DOM input Time required Property se enumeran a continuación:
- Google Chrome
- Internet Explorer 10.0 +
- 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