选择JQuery更改=" true" on select - angularjs

时间:2016-02-21 11:13:10

标签: javascript jquery

我在页面上有这个选择:

$("#myselect option:selected").val('bike');

我需要选择的选项是自行车...如何使用jQuery更改它?

我试过了:

$("#myselect").val('bike');

def Trip.test_low_level
  Rails.cache.fetch("test_destinations", expires_in: 12.hours) do
    Trip.all.joins(:destinations).where("destinations.id = ?", 382)
  end
end

但他们没有工作

1 个答案:

答案 0 :(得分:0)

我刚创建了一个虚拟按钮,可以在点击它时更改selected。这是代码

HTML

<select id="myselect">
      <option value="car" selected="true">Car</option>
      <option value="bike">Bike</option>
      <option value="plane">Plane</option>
</select>
<button id="cS">
 Change Selected
</button>

JS

$("#cS").on('click',function(){
$('#myselect option[value="bike"]').attr('selected',true)

})

WORKING EXAMPLE