How to add “selected” in option attribute using Javascript or jQuery?

后端 未结 6 910
猫巷女王i
猫巷女王i 2021-02-09 02:16

Below is code for select option and generate using php from database and i try to add selected=\"selected\" to value=\"4\" using jQuery or any javascri

6条回答
  •  孤街浪徒
    2021-02-09 02:39

    Just try

    $("#countryselect").val('4')
        //OR
    
    $("#countryselect option").val('4')​.attr("selected", true)​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
    

    Check this FIDDLE

提交回复
热议问题