是否有可能在typeahead.js中触发3的倍数的调用

问题描述 投票:0回答:1

typeahead.js jQuery插件触发每个字母的调用,或者我们可以给minLength进行建议呈现。我只想显示3的倍数的建议>

typeahead.js jQuery插件会为每个字母触发呼叫,或者我们可以给minLength进行建议呈现。我只想显示3的倍数的建议>>

typeahead.js twitter-typeahead
1个回答
0
投票

https://twitter.github.io/typeahead.js/examples/

$('#the-basics .typeahead').typeahead({
                hint: true,
                highlight: true,
                minLength: 3
            },
                {
                    name: 'items',
                    source: substringMatcher(items)
                });
© www.soinside.com 2019 - 2024. All rights reserved.