How to get select box option value in jQuery

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

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



    
    
    
    

within the script:

$(function(){

$('#coprede').change(function(){
    alert($('#coprede :selected').val());
    });
});

提交回复
热议问题