“Get Optio Value JQuery” Respostas de código

JQuery Obtenha o valor da opção selecionado

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

Obtenha a opção selecionada jQuery

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

Obtenha texto em selecionado jQuery

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

JQuery Selecione a opção por valor

$('.id_100 option[value=val2]').attr('selected','selected');
Almabek

JQuery Get Value of Selected Opção

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

Get Optio Value JQuery

<select id="state">
    <option value="state1" data-id="1">state1</option>
    <option value="state2" data-id="2">state2</option>
    <option value="state3" data-id="3">state3</option>
</select>

$('#state option[data-id="2"]').val();

//output state2
Lokesh003Coding

Respostas semelhantes a “Get Optio Value JQuery”

Perguntas semelhantes a “Get Optio Value JQuery”

Mais respostas relacionadas para “Get Optio Value JQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código