我使用https://github.com/aehlke/tag-it这个插件进行自动完成标记
用户只需从现有数组sampleTags中取出标签
在添加标签之前,我检查元素是否在数组中
beforeTagAdded: function(evt, ui) {
var counter = jQuery.inArray(ui.tagLabel, sampleTags);
if (counter != -1 ) { return true; }
else { alert('This word is not in array'); return false; }
},
但是输入不会被删除。
我怎样才能做到这一点?
jsFiddle:http: //jsfiddle.net/zqDXL/3/