Set select option 'selected', by value

后端 未结 28 2785
攒了一身酷
攒了一身酷 2020-11-22 10:40

I have a select field with some options in it. Now I need to select one of those options with jQuery. But how can I do that when I only know the

28条回答
  •  故里飘歌
    2020-11-22 11:32

    Deselect all first and filter the selectable options:

    $('.id_100 option')
         .removeAttr('selected')
         .filter('[value=val1]')
             .attr('selected', true)
    

提交回复
热议问题