There is a select has class ui fluid dropdown, I just want to set the option selected when it has be chosen:
<select class="ui fluid dropdown" name="station">
<option value="">目的地</option>
{% for station_name, station_code in station_list.items() %}
<option value="{{ station_code }}"
{% if station == station_name %} selected="selected" {% end %}>{{ station_name }}</option>
{% end %}
</select>
When I use bootstrap, it works!