“opción jQuery seleccionada” Código de respuesta

Obtenga texto en seleccionar jQuery

$("#id option:selected").text();
Mr. David Betagen Ranger Americano Number One

opción seleccionada de jQuery

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

seleccionado seleccionar html jQuery

<select id="menu">
   <option value="1">Opción 1</option>
   <option value="2">Opción 2</option>
   <option value="3">Opción 3</option>
</select>
<script >
  $(function () {
     $("#menu option[value='2']").attr("selected", true);
  });
</script>
Junior Cercado V.

Seleccione el valor de opción jQuery

$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});
25 din me paisa double

Opción seleccionada jQuery

$('select option[value=8272]').attr('selected', '');
Ganz404

opción jQuery seleccionada

$('.selDiv option:eq(1)').prop('selected', true)
Shadow

Respuestas similares a “opción jQuery seleccionada”

Preguntas similares a “opción jQuery seleccionada”

Más respuestas relacionadas con “opción jQuery seleccionada” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código