How to get select box option value in jQuery

后端 未结 8 1675
逝去的感伤
逝去的感伤 2021-02-03 10:47

How to get the value of option select box in jQuery if I have the code like this,


    
    
    


$(document).ready(function(){
    $(".media").live("change",function(){
        var id = $(this).val();
        var dataString = 'id='+ id;
        alert(id); return false;
    }); 
}); 

提交回复
热议问题