我添加了一个包含自动填充功能的字段。现在我想要添加一个包含自动填充的字段,然后如果我想编辑所选字段,则删除所选字段。
喜欢这个网站demo site
var aTags = ["ask", "always", "all", "alright", "one", "foo", "blackberry", "tweet", "force9", "westerners", "sport"];
var bTags = ["aaaaaaa", "bbbbbbbb", "ccccccc", "ddddddddd"];
$("#tags").autocomplete({
source: aTags.concat(bTags),
response: function(e, result) {
if (!result.content.length) {
console.log('No matches!');
jQuery('#messag').html("Not match...").show();
} else {
jQuery('#messag').hide();
}
}
});