我已经使用jquery添加了搜索下拉列表。它搜索得很好。现在我想添加输入数据与我的数组数据不匹配,然后在输入字段的下方显示文本消息通知,当文本与数组匹配时,然后自动隐藏消息通知。我怎么能这样做?
<input type='text' title='Tags' id='tags' />
$(document).ready(function() {
var aTags = ["ask","always", "all", "alright", "one", "foo", "blackberry", "tweet","force9", "westerners", "sport"];
$( "#tags" ).autocomplete({
source: aTags
});
});
答案 0 :(得分:1)
要实现此目的,您可以使用自动完成功能的response
事件。它接收一个包含所做匹配数组的对象。如果此数组为空,则表示没有匹配项,您可以显示消息:
var aTags = ["ask", "always", "all", "alright", "one", "foo", "blackberry", "tweet", "force9", "westerners", "sport"];
var $noMatches = $('.no-matches');
$("#tags").autocomplete({
source: aTags,
response: function(e, result) {
$noMatches.hide();
if (!result.content.length)
$noMatches.show();
}
});
span {
display: none;
color: #C00;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css" />
<input type='text' title='Tags' id='tags' />
<span class="no-matches">No matches!</span>
请注意,SO Snippet编辑器目前已被破坏,因此这里有一个小提琴的工作示例:https://jsfiddle.net/vfzrgnon/
答案 1 :(得分:0)
在HTML中添加此功能
<div class="ui-widget"><input type='text' title='Tags' id='tags' /></div>