Jquery to get the id of selected value from dropdown

前端 未结 4 1221
面向向阳花
面向向阳花 2021-02-10 14:26

I have a drop down list that fetches values from db as follows

$.get(\'/getJobs\', function (jobs) {
        seljobs = jobs;
        var i = 0;
        jobs.forE         


        
4条回答
  •  悲&欢浪女
    2021-02-10 15:09

    Try the change event and selected selector

    $('#jobSel').change(function(){
        var optId = $(this).find('option:selected').attr('id')
    })
    

提交回复
热议问题