我正在使用Bootstrap Typeahead。我正在使用bootstrap 3.1,并下载此脚本。 http://twitter.github.io/typeahead.js/
我也在使用http://timschlechter.github.io/bootstrap-tagsinput/examples/bootstrap3/
<input id="Subject" type="text" class="form-control" placeholder="Subject">
我的剧本是;
$('#Subject').tagsinput({
typeahead: {
source: ['Amsterdam', 'Washington', 'Sydney', 'Beijing', 'Cairo']
}
});
tagsinput插件正在运行,但是,typeahead不起作用。我怎么解决这个问题? 感谢。
答案 0 :(得分:0)
试试这个:
$('#Subject').tagsinput({
//options for tagsinput here
}).typeahead({
source: ['Amsterdam', 'Washington', 'Sydney', 'Beijing', 'Cairo']
});
typeahead()
和tagsinput()
方法不一定相关,因此您需要在选择器上单独调用它们(通过method chaining)。