jq获取下拉框中的value值

Posted on 2021-02-01 10:13  猫头唔食鱼  阅读(347)  评论(0编辑  收藏  举报
$("select").change(function(){
     console.log($(this).val());
});