jQuery get value of select onChange

后端 未结 16 1907
星月不相逢
星月不相逢 2020-11-22 05:31

I was under the impression that I could get the value of a select input by doing this $(this).val(); and applying the onchange parameter to the sel

16条回答
  •  清歌不尽
    2020-11-22 06:05

    This is helped for me.

    For select:

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

    For radio/checkbox:

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

提交回复
热议问题