有没有人知道如何找不到匹配项时隐藏建议列表。我正在使用来自http://docs.jquery.com/UI/Autocomplete的jquery自动填充功能。
目前,当未找到匹配项时,jquery显示所有结果(或前20个)。但在这种情况下它应该是空的。
我的代码是这样的:
jQuery("#keyword").autocomplete('index.php', {
width: keyword_width,
multiple: true,
selectFirst: false,
minChars: 0,
matchContains: false,
multipleSeparator: " ",
mustMatch: true,
delay: 0
});
有没有人有任何建议怎么做?