我正在使用 selectboxit 插件 - http://gregfranko.com/jquery.selectBoxIt.js/
对于普通的 select 元素,设置 selected 元素的 prop 将更新 UI。使用 selectboxit 它不起作用。
演示 - http://jsfiddle.net/uXM6Y/
var selectBox = $("select#test").selectBoxIt().data("selectBoxIt");
$('.btn').click(function(e){
$('#test option:contains("Great")').prop('selected', true);
});
当我单击演示中的更新按钮时,选择未设置为更新值。如果我删除 selectboxit 插件,它工作正常。