我在输入字段上使用 Select2 作为多选。我试图找出单击了哪个选项,但是如果我查看单击选项时引发的事件(“choice-selected”),我只能找到 event.target.value ,它是具有所有选定选项的数据数组(选择)。基本上我想访问单击的值,以便让用户在该特定选择中编辑自定义属性。我怎么能这样做呢?
JSFiddle的问题:http: //jsfiddle.net/JtTTF/
$(test).bind("choice-selected", function(e) {
alert(e.target.value);
// this is where i would like to access the clicked choice id so i can edit the custom data attribute "reason"
});