📅  最后修改于: 2022-03-11 15:03:51.483000             🧑  作者: Mango
$('#the_id_select').on('change', function() {
alert( this.value );
});
//or
$("#the_id_select").change(function(){
alert( this.value );
});