“Seleccione el valor seleccionado jQuery” Código de respuesta

JQURY Opción seleccionada


<select id="myselect">
    <option value="1">Mr</option>
    <option value="2">Mrs</option>
    <option value="3">Ms</option>
    <option value="4">Dr</option>
    <option value="5">Prof</option>
</select>

<script>
$( "#myselect option:selected" ).val();
</script>
Lonely Lemur

Obtener el texto opción seleccionada jQuery

$('#id option:selected').text()
Black Tailed Deer

jQuery obtenga el valor de la opción seleccionada

$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
noqta.tn

Obtenga la opción seleccionada jQuery

$( "#myselect option:selected" ).text();
Viruscom1000

opción seleccionada de jQuery

$( "#myselect option:selected" ).val();
Difficult Duck

Seleccione el valor seleccionado jQuery

If you want to get the selected option text, you can use $(select element). text() . var text = $('#aioConceptName option:selected'). text();
If you want to get selected option value, you can use $(select element). val() . var val = $('#aioConceptName option:selected').val();
Dragon Heart

Respuestas similares a “Seleccione el valor seleccionado jQuery”

Preguntas similares a “Seleccione el valor seleccionado jQuery”

Más respuestas relacionadas con “Seleccione el valor seleccionado jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código