我有bootstrap tags input插件的这个功能:
$(document).ready(function () {
$('input').tagsinput({
typeahead: {
source: function (query) {
return $.getJSON('citynames.json');
}
}
})
});
但是这个插件不起作用。我认为它与jQuery (document).ready
存在冲突。我该如何解决这个问题?
JSFIDDLE(为了更好地理解代码)
答案 0 :(得分:0)
试试这个
$(document).ready(function () {
$('input').tagsinput({
typeahead: {
source: function (query, process) {
process($.getJSON('citynames.json'));
}
}
})
});