我正在使用 Twitter typeahead.js 标头,以下是我的有效代码。但是我想知道是否有一种方法可以使用函数而不是本地数组来填充我的数据集。非常感谢您的帮助。
<input id="look" placeholder="search" autocomplete="off" />
<button id="btn">Submit</button>
<script type="text/javascript">
$("#look").typeahead({
name: 'accounts',
//Would like to use a function to populate my dataset here instead of this array
local: ['timtrueman', 'JakeHarding', 'vskarich']
});
$("#btn").click(function () {
$("#look").typeahead('setQuery', 't');
$("#look").focus();
});
</script>
</body>