📌  相关文章
📜  选择选项值 jquery - Javascript 代码示例

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

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