Método HTML DOM Input Datetime select()

El método de entrada Datetime select() en HTML DOM se utiliza para seleccionar el contenido del campo Texto de fecha y hora.

Sintaxis:

Datetimebject.select()

Parámetros : No acepta ningún parámetro.

Ejemplo: este ejemplo utiliza el método de entrada Datetime select() para seleccionar el campo de fecha.

HTML

<!DOCTYPE html>
<html>
  
<head>
    <style>
        h1 {
            color: green;
        }
  
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML DOMInput Datetime select() method</h2>
    <br>
  
    <input type="datetime" id="Test_Datetime"
        value="2019-02-18T12:00Z">
  
    <p>
        To select the value of the datetime 
        field, double click the "Select 
        Datetime Field" button.
    </p>
  
    <button ondblclick="My_Datetime()">
        Select Datetime Field
    </button>
  
    <script>
        function My_Datetime() {
            document.getElementById("Test_Datetime").select();
        }
    </script>
</body>
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

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 *