我正在使用this widget進行多重選擇。我需要動態添加和從列表中刪除數據。Multiselect javascript
<select class="multiselect" id="programmes" multiple="multiple">
<option value="all" data-name="all_programmes" data-id="all_programmes" data-value="all" selected="selected">If this criterion is relevant to you, choose one or more options</option>
<% Interact::Keep::Programme.used_for_statistics.ordered("period DESC, name").all.each do |p| %>
<option value="<%=p.id%>" data-name="<%=p.name%>" data-id="#<%=p.id%>_programmes" data-value="<%=p.id%>" data-source="<%=p.source%>"><%=p.name%></option>
<% end %>
</select>
在javascript中我需要更改數據,有人可以幫助我嗎?
謝謝你的答案,我想改變多個選擇,當我在其他組件更改數據。 –