HTML | DOM Opción valor Propiedad

La propiedad Valor de opción en HTML DOM se usa para establecer o devolver el valor del elemento <opción>. El valor se envía al servidor cuando se envía el formulario. Este atributo contiene el texto de valor que se envió al servidor.

Sintaxis:

  • Devuelve la propiedad del valor de la opción.
    optionObject.value 
  • Se utiliza para establecer la propiedad del valor de la opción.
    optionObject.value = value 
  • Valores de propiedad: contiene valor de valor de propiedad único . Este atributo contiene el texto de valor que se envió al servidor.

    Valor devuelto: Devuelve un valor de string que representa el valor de texto enviado al servidor.

    Ejemplo 1: este ejemplo ilustra cómo devolver la propiedad Valor de opción.

    <!DOCTYPE html> 
    <html
          
    <head
        <title>
            HTML DOM Option Value Property
        </title
    </head
      
    <body style = "text-align: center;">
              
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1
          
        <h2>DOM Option value Property</h2
              
        <!-- List of Option elements -->
        <select id="GFG"
            <option value="merge">Merge Sort</option
            <option value="bubble">Bubble Sort</option
            <option value="insertion">Insertion Sort</option>
            <option value="quick">Quick Sort</option
        </select>
              
        <br><br>
          
        <button onclick="myGeeks()">
            Submit
        </button>
          
        <p id="sudo" style="font-size:20px;color:green;"></p>
              
        <!-- Script to return selected option value -->
        <script>
            function myGeeks() {
                var ind = document.getElementById("GFG").selectedIndex;
                var opt = document.getElementsByTagName("option")[ind].value;
                document.getElementById("sudo").innerHTML = opt;
            }
        </script>
    </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 Valor de opción.

    <!DOCTYPE html> 
    <html
      
    <head
        <title>
            HTML DOM Option Value Property
        </title
    </head
      
    <body style = "text-align: center;">
              
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1
          
        <h2>DOM Option value Property</h2
              
        <!-- List of Options -->
        <select id="GFG"
            <option value="merge">Merge Sort</option
            <option value="bubble">Bubble Sort</option
            <option value="insertion">Insertion Sort</option>
            <option value="quick">Quick Sort</option
        </select>
          
        <br><br>
          
        <button onclick="myGeeks()">
            Submit
        </button>
          
        <p id="sudo" style="font-size:20px;color:green;"></p>
          
        <!-- script to set Option value property -->
        <script>
            function myGeeks() {
                document.getElementById("GFG").value = "Heap";
                  
                document.getElementById("sudo").innerHTML
                    = "The value of the value attribute has "
                    + "been changed from 'merge' to 'Heap' ";
            }
        </script>
    </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 la propiedad de valor de la opción DOM se enumeran a continuación:

    • Google Chrome
    • 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *