“Wybierz wybraną wartość jQuery” Kod odpowiedzi

JQURURE Otrzymuj wybraną opcję


<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

Pobierz wybraną opcję JQuery

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

JQuery Otwórz wybraną wartość opcji

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

Pobierz wybraną opcję jQuery

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

Wybrana opcja JQuery

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

Wybierz wybraną wartość 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

Odpowiedzi podobne do “Wybierz wybraną wartość jQuery”

Pytania podobne do “Wybierz wybraną wartość jQuery”

Więcej pokrewnych odpowiedzi na “Wybierz wybraną wartość jQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu