我正在使用此代码:
$('.ajax-typeahead').typeahead({
source: function(query, process) {
return $.ajax({
url: $(this)[0].$element.data('link'),
type: 'get',
data: {q: query},
dataType: 'json',
success: function(res) {
return process(res);
}
});
}
});
当我在输入字段中输入内容时,我得到了:
bootstrap.min.js(第1行)
TypeError:a未定义
有谁知道什么时候出错?
编辑:我更新到最新版本2.3,现在一切正常!
答案 0 :(得分:0)
我更新到最新版本2.3,现在一切正常!