我有一个输入字段,其中填充了“ JQuery UI自动完成”。目的是检查数据库中是否已经不存在该值。
存在选择项时,显示#warning div:
$("#item").autocomplete({
source: function(request, response) {
$.getJSON(
"search.php",
{ term:request.term, type:'item' },
response
);
},
minLength: 3,
select: function(event, ui) {
$("#warning").show();
$("#item").html('');
}
当用户选择一个条目但添加一些字符时,我希望#warning div隐藏。
我不知道该怎么做。
感谢您的帮助。
答案 0 :(得分:0)
通过在调用自动完成功能时简单地添加hide()函数来解决:
<div data-id="your_value">