我正在使用chosen.jquery将我的select转换为多个select。当我从选择字段中删除当前选项并加载新选项时,我无法选择新添加的选项。
我调试并注意到在Chosen.Jquery.js的后续行中,未选择所选的选项。
if (this.is_multiple || this.form_field.selectedIndex !== this.current_selectedIndex) {
this.form_field_jq.trigger("change", {
'selected': this.form_field.options[item.options_index].value
});
}
我从列表中删除选项后执行以下代码。
$('#partnerCasteId').trigger("liszt:updated");
我刚注意到chosen.jquery中没有liszt:updated选项。 我需要获得不同的版本吗? 请帮忙