我有一个选择的组合框(具有多个值)。
我有2个按钮:首先有这个功能,以便在组合框中添加一个值
$('select option[value="13"]').attr('selected', 'selected')
$('select').trigger('chosen:updated');
第二个按钮具有此功能,以便删除此值:
$('select option[value="13"]').removeAttr('selected')
$('select').trigger('chosen:updated');
您可以在此处查看示例:http://jsfiddle.net/pingoooo/7NWEd/1/
你能告诉我为什么第二次点击第一个按钮时,该功能不起作用。
我使用选择的版本1.0
由于
编辑:似乎适用于chrome,但为什么不使用IE和FF