📅  最后修改于: 2022-03-11 15:03:50.386000             🧑  作者: Mango
$(document).ready(function(){
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});