📌  相关文章
📜  如何获取下拉 jquery 的选定值 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.790000             🧑  作者: Mango

代码示例2
$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});