jQuery obtém o valor de select onChange

779

Fiquei com a impressão de que poderia obter o valor de uma entrada de seleção fazendo isso $(this).val();e aplicando o onchangeparâmetro no campo de seleção.

Parece que só funciona se eu fizer referência ao ID.

Como faço isso usando isso.

RIK
fonte

Respostas:

1492

Tente isto-

$('select').on('change', function() {
  alert( this.value );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<select>
    <option value="1">One</option>
    <option value="2">Two</option>
</select>

Você também pode consultar os eventos onchange-

function getval(sel)
{
    alert(sel.value);
}
<select onchange="getval(this);">
    <option value="1">One</option>
    <option value="2">Two</option>
</select>

thecodeparadox
fonte
15
Sei que é tarde demais, mas se você estiver usando o teclado (tabulação) para navegar em um formulário e usar as setas para cima / para baixo para escolher em uma lista suspensa, o FireFox (22.0) não acionará o evento de alteração. Além disso, é necessário vincular a pressão das teclas no FireFox. Informações adicionais: jQuery 1.10.2 usando a sintaxe $ ('select'). On ('change', function () {/ * do seomthing * /});
MonkeyZeus
Para mim, o exemplo do jQuery não funciona e tenho certeza de que o arquivo do jQuery 1,11 foi carregado corretamente na minha página. Nos logs JS do meu navegador, obtive o seguinte: não tem método 'on'. Eu tentei no Firefox e Chrome, mesmo resultado. É um uso padrão ou foi implementado apenas nas versões mais recentes do jquery? thx para a resposta #
277 Alex Alex
2
@MonkeyZeus Você não precisa, ele será acionado quando o componente perder o foco. From (método de alteração do jQuery) [ api.jquery.com/change/] "Para caixas de seleção, caixas de seleção e botões de opção, o evento é disparado imediatamente quando o usuário faz uma seleção com o mouse, mas para o outro elemento digita o evento é adiado até que o elemento perca o foco ". E, é claro, você pode usar o .change()atalho.
PhoneixS
@ Alex, você está fazendo algo errado, desde o jQuery 1.7, consulte api.jquery.com/on .
PhoneixS
1
@PhoneixS Você ainda está usando o FireFox 22.0?
MonkeyZeus 3/08
103

Fiquei com a impressão de que poderia obter o valor de uma entrada selecionada fazendo isso $ (this) .val ();

Isso funciona se você se inscrever de maneira discreta (que é a abordagem recomendada):

$('#id_of_field').change(function() {
    // $(this).val() will work here
});

se você usar onselecte misturar marcação com script, precisará passar uma referência ao elemento atual:

onselect="foo(this);"

e depois:

function foo(element) {
    // $(element).val() will give you what you are looking for
}
Darin Dimitrov
fonte
99

Isso me ajudou.

Para selecionar:

$('select_tags').on('change', function() {
    alert( $(this).find(":selected").val() );
});

Para rádio / caixa de seleção:

$('radio_tags').on('change', function() {
    alert( $(this).find(":checked").val() );
});
ilgam
fonte
Coloquei '#' no meu código $ ('# select_tags'). On ('change', function ()
Daleman
16

Experimente o método de delegação de eventos, isso funciona em quase todos os casos.

$(document.body).on('change',"#selectID",function (e) {
   //doStuff
   var optVal= $("#selectID option:selected").val();
});
Krishna
fonte
10

Você pode tentar isso (usando jQuery ) -

$('select').on('change', function()
{
    alert( this.value );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<select>
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
    <option value="3">Option 3</option>
    <option value="4">Option 4</option>
</select>

Ou você pode usar Javascript simples como este-

function getNewVal(item)
{
    alert(item.value);
}
<select onchange="getNewVal(this);">
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
    <option value="3">Option 3</option>
    <option value="4">Option 4</option>
</select>

Abrar Jahin
fonte
10
$('#select_id').on('change', function()
{
    alert(this.value); //or alert($(this).val());
});



<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<select id="select_id">
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
    <option value="3">Option 3</option>
    <option value="4">Option 4</option>
</select>
Ankit Pise
fonte
9

A função de seta tem um escopo diferente da função, this.valuedará indefinido para uma função de seta. Para consertar o uso

$('select').on('change',(event) => {
     alert( event.target.value );
 });
Sharuk Ahmed
fonte
6

Isto é o que funcionou para mim. Tentei tudo sem sorte:

<html>

  <head>
    <title>Example: Change event on a select</title>

    <script type="text/javascript">

      function changeEventHandler(event) {
        alert('You like ' + event.target.value + ' ice cream.');
      }

    </script>

  </head>

  <body>
    <label>Choose an ice cream flavor: </label>
    <select size="1" onchange="changeEventHandler(event);">
      <option>chocolate</option>
      <option>strawberry</option>
      <option>vanilla</option>
    </select>
  </body>

</html>

Retirado do Mozilla

drjorgepolanco
fonte
6

Procure pelo site jQuery

HTML:

<form>
  <input class="target" type="text" value="Field 1">
  <select class="target">
    <option value="option1" selected="selected">Option 1</option>
    <option value="option2">Option 2</option>
  </select>
</form>
<div id="other">
  Trigger the handler
</div>

JAVASCRIPT:

$( ".target" ).change(function() {
  alert( "Handler for .change() called." );
});

Exemplo de jQuery:

Para adicionar um teste de validade a todos os elementos de entrada de texto:

$( "input[type='text']" ).change(function() {
  // Check input( $( this ).val() ) for validity here
});
Andre Mesquita
fonte
6

Para todas as seleções, chame esta função.

$('select').on('change', function()
{
    alert( this.value );
});

Para apenas um, selecione:

$('#select_id') 
Ali Asad
fonte
4

jQuery obtém valor de elementos html selecionados usando o evento Change

Para demonstração e mais exemplo

$(document).ready(function () {   
    $('body').on('change','#select_box', function() {
         $('#show_only').val(this.value);
    });
}); 
<!DOCTYPE html>  
<html>  
<title>jQuery Select OnChnage Method</title>
<head> 
 <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>    
</head>  
<body>  
<select id="select_box">
 <option value="">Select One</option>
    <option value="One">One</option>
    <option value="Two">Two</option>
    <option value="Three">Three</option>
    <option value="Four">Four</option>
    <option value="Five">Five</option>
</select>
<br><br>  
<input type="text" id="show_only" disabled="">
</body>  
</html>  

Desenvolvedor
fonte
3

Observe que, se eles não estiverem funcionando, pode ser porque o DOM não foi carregado e seu elemento ainda não foi encontrado.

Para corrigir, coloque o script no final do corpo ou use o documento pronto

$.ready(function() {
    $("select").on('change', function(ret) {  
         console.log(ret.target.value)
    }
})
Colin D
fonte
2
jQuery(document).ready(function(){

    jQuery("#id").change(function() {
      var value = jQuery(this).children(":selected").attr("value");
     alert(value);

    });
})
Virendra Yaduvanshi
fonte
2

Deixe-me compartilhar um exemplo que desenvolvi com o BS4, thymeleaf e Spring boot.

Estou usando dois SELECTs, onde o segundo ("subtópico") é preenchido por uma chamada AJAX com base na seleção do primeiro ("tópico").

Primeiro, o trecho de timeleaf:

 <div class="form-group">
     <label th:for="topicId" th:text="#{label.topic}">Topic</label>
     <select class="custom-select"
             th:id="topicId" th:name="topicId"
             th:field="*{topicId}"
             th:errorclass="is-invalid" required>
         <option value="" selected
                 th:text="#{option.select}">Select
         </option>
         <optgroup th:each="topicGroup : ${topicGroups}"
                   th:label="${topicGroup}">
             <option th:each="topicItem : ${topics}"
                     th:if="${topicGroup == topicItem.grp} "
                     th:value="${{topicItem.baseIdentity.id}}"
                     th:text="${topicItem.name}"
                     th:selected="${{topicItem.baseIdentity.id==topicId}}">
             </option>
         </optgroup>
         <option th:each="topicIter : ${topics}"
                 th:if="${topicIter.grp == ''} "
                 th:value="${{topicIter.baseIdentity.id}}"
                 th:text="${topicIter.name}"
                 th:selected="${{topicIter.baseIdentity?.id==topicId}}">
         </option>
     </select>
     <small id="topicHelp" class="form-text text-muted"
            th:text="#{label.topic.tt}">select</small>
</div><!-- .form-group -->

<div class="form-group">
    <label for="subtopicsId" th:text="#{label.subtopicsId}">subtopics</label>
    <select class="custom-select"
            id="subtopicsId" name="subtopicsId"
            th:field="*{subtopicsId}"
            th:errorclass="is-invalid" multiple="multiple">
        <option value="" disabled
                th:text="#{option.multiple.optional}">Select
        </option>
        <option th:each="subtopicsIter : ${subtopicsList}"
                th:value="${{subtopicsIter.baseIdentity.id}}"
                th:text="${subtopicsIter.name}">
        </option>
    </select>
    <small id="subtopicsHelp" class="form-text text-muted"
           th:unless="${#fields.hasErrors('subtopicsId')}"
           th:text="#{label.subtopics.tt}">select</small>
    <small id="subtopicsIdError" class="invalid-feedback"
           th:if="${#fields.hasErrors('subtopicsId')}"
           th:errors="*{subtopicsId}">Errors</small>
</div><!-- .form-group -->

Estou repetindo uma lista de tópicos armazenados no contexto do modelo, mostrando todos os grupos com seus tópicos e, depois disso, todos os tópicos que não têm um grupo. BaseIdentity é uma chave composta @Embedded BTW.

Agora, aqui está o jQuery que lida com mudanças:

$('#topicId').change(function () {
    selectedOption = $(this).val();
    if (selectedOption === "") {
        $('#subtopicsId').prop('disabled', 'disabled').val('');
        $("#subtopicsId option").slice(1).remove(); // keep first
    } else {
        $('#subtopicsId').prop('disabled', false)
        var orig = $(location).attr('origin');
        var url = orig + "/getsubtopics/" + selectedOption;
        $.ajax({
            url: url,
           success: function (response) {
                  var len = response.length;
                    $("#subtopicsId option[value!='']").remove(); // keep first 
                    for (var i = 0; i < len; i++) {
                        var id = response[i]['baseIdentity']['id'];
                        var name = response[i]['name'];
                        $("#subtopicsId").append("<option value='" + id + "'>" + name + "</option>");
                    }
                },
                error: function (e) {
                    console.log("ERROR : ", e);
                }
        });
    }
}).change(); // and call it once defined

A chamada inicial de change () garante que ela seja executada na página recarregada ou se um valor foi pré-selecionado por alguma inicialização no back-end.

BTW: Estou usando a validação de formulário "manual" (consulte "é válido" / "é inválido"), porque eu (e os usuários) não gostamos que o BS4 marque os campos vazios não obrigatórios como verdes. Mas esse é o segundo escopo deste Q e, se você estiver interessado, também posso publicá-lo.

4braincells
fonte
1

Quero adicionar quem precisa da funcionalidade completa do cabeçalho personalizado

   function addSearchControls(json) {
        $("#tblCalls thead").append($("#tblCalls thead tr:first").clone());
        $("#tblCalls thead tr:eq(1) th").each(function (index) {
            // For text inputs
            if (index != 1 && index != 2) {
                $(this).replaceWith('<th><input type="text" placeholder=" ' + $(this).html() + ' ara"></input></th>');
                var searchControl = $("#tblCalls thead tr:eq(1) th:eq(" + index + ") input");
                searchControl.on("keyup", function () {
                    table.column(index).search(searchControl.val()).draw();
                })
            }
            // For DatePicker inputs
            else if (index == 1) {
                $(this).replaceWith('<th><input type="text" id="datepicker" placeholder="' + $(this).html() + ' ara" class="tblCalls-search-date datepicker" /></th>');

                $('.tblCalls-search-date').on('keyup click change', function () {
                    var i = $(this).attr('id');  // getting column index
                    var v = $(this).val();  // getting search input value
                    table.columns(index).search(v).draw();
                });

                $(".datepicker").datepicker({
                    dateFormat: "dd-mm-yy",
                    altFieldTimeOnly: false,
                    altFormat: "yy-mm-dd",
                    altTimeFormat: "h:m",
                    altField: "#tarih-db",
                    monthNames: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"],
                    dayNamesMin: ["Pa", "Pt", "Sl", "Ça", "Pe", "Cu", "Ct"],
                    firstDay: 1,
                    dateFormat: "yy-mm-dd",
                    showOn: "button",
                    showAnim: 'slideDown',
                    showButtonPanel: true,
                    autoSize: true,
                    buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",
                    buttonImageOnly: false,
                    buttonText: "Tarih Seçiniz",
                    closeText: "Temizle"
                });
                $(document).on("click", ".ui-datepicker-close", function () {
                    $('.datepicker').val("");
                    table.columns(5).search("").draw();
                });
            }
            // For DropDown inputs
            else if (index == 2) {
                $(this).replaceWith('<th><select id="filter_comparator" class="styled-select yellow rounded"><option value="select">Seç</option><option value="eq">=</option><option value="gt">&gt;=</option><option value="lt">&lt;=</option><option value="ne">!=</option></select><input type="text" id="filter_value"></th>');

                var selectedOperator;
                $('#filter_comparator').on('change', function () {
                    var i = $(this).attr('id');  // getting column index
                    var v = $(this).val();  // getting search input value
                    selectedOperator = v;
                    if(v=="select")
                        table.columns(index).search('select|0').draw();
                    $('#filter_value').val("");
                });

                $('#filter_value').on('keyup click change', function () {
                    var keycode = (event.keyCode ? event.keyCode : event.which);
                    if (keycode == '13') {
                        var i = $(this).attr('id');  // getting column index
                        var v = $(this).val();  // getting search input value
                        table.columns(index).search(selectedOperator + '|' + v).draw();
                    }
                });
            }
        })

    }
Hamit YILDIRIM
fonte