我已经阅读了关于stackoverflow上此帖子的所有解决方案,没有一个解决我的问题,
我已经成功实现了typeahead.js
,但是我得到了正确的结果,但是结果没有显示在下拉列表中。
<input type="text" name="suggest" id="suggest" class="form-control input-lg" autocomplete="off" placeholder="type your message">
$(document).ready(function() {
$('#suggest').typeahead({
source: function(query, result) {
$.ajax({
url: "https://chat.synetal.com/Suggestion/getMsg",
method: "POST",
data: {
query: query
},
dataType: "json",
success: function(data) {
result($.map(data, function(item) {
return item;
}));
}
})
}
})
});
答案 0 :(得分:0)
我已经使用jquery自动完成功能
From this URL i have completed this and its easy to impletment