HTML DOM Entrada Mes select() Método

El método de entrada Month select() en HTML DOM se usa para seleccionar el contenido del campo de texto del mes.

Sintaxis:

monthObject.select()

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

Valor devuelto: No devuelve ningún valor.

Ejemplo: este ejemplo utiliza el método de entrada Month select() para seleccionar el contenido dentro del campo de mes. 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Month select() Method
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1>GeeksForGeeks</h1>
 
    <h2>DOM Input Month select() Method</h2>
    <form id="myGeeks">
        <input type="month" id="month_id"
            name="geeks" autofocus>
    </form>
     
    <br>
    <b>
 
<p>
        Click on the below button to select
        the content of Month field.
    </p>
 
</b>
 
    <button onclick="myGeeks()">
        Click Here!
    </button>
 
    <p id="GFG" style="font-size:20px;"></p>
 
 
 
 
    <!-- Script to Get the content of a Month field-->
    <script>
        function myGeeks() {
 
            // select the content of the Input month field .
            var gfg =
                document.getElementById(
                    "month_id").select();
        }
    </script>
</body>
 
</html>

Producción:

HTML DOM Input Month select() Method

HTML DOM Entrada Mes select() Método

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 *