有人知道为什么在Safari中这不起作用吗?
$('#my_dropdown')
.find('option')
.filter(function(index) {
return $(this).text() === $('#country_of_residence').html();
}).prop("selected", true);
在Chrome和Firefox中的确如此。 该选项确实被选中(因为选择的atrribute =“selected”可见),但下拉列表未更新。 我正在使用Safari 7.0.4。