Choose option from select list using next/previous button with jquery

前端 未结 4 635
礼貌的吻别
礼貌的吻别 2021-01-20 00:48

What is best way to navigate select option using next/previous button with jquery? I have a select list when change also changes some div. Instead of just a dropdown, I want

4条回答
  •  渐次进展
    2021-01-20 01:27

    to set the selected value of a list you should try something like this:

    $("#mycars").val("saab");
    

提交回复
热议问题