我有table
,当我点击tr
时,值会传输input
个元素和bootstrap select-search
,以便对其进行编辑并提交更新。< / p>
我的问题是,当jQuery在console.log
中设置一个值时,似乎选择了正确的值但未显示。默认值始终显示在选择选项中。
$('#4 option').prop('selected', false)
.filter('[value=' + $tds.eq(3).text() + ']')
.prop('selected', true);
<div class="col-lg-2 col-md-2 col-sm-2" id="4">
<select style="width: 170px;" class="form-control search-select select-compte" >
{% for compte in comptes %}
<option value="{{compte.code}}">
{{compte.code}} {{compte.description}}
</option>
{% endfor %}
</select>
</div>