📌  相关文章
📜  获取选定的选项 jquery - Javascript 代码示例

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

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