Jquery 文本自动补全插件 Bootstrap-Typehead

github 仓库地址: https://github.com/tcrosen/twitter-bootstrap-typeahead

介绍

文本输入框,根据已经键入的文本,模糊搜索,给出自动补全提示。

此处输入图片的描述

FAQ

光标聚焦,自动弹出

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(function () {
// 指定文本输入框 初始化 自动补全
var typeahead_ele = $('input[name="xx"]').typeahead({..option..});

// 光标聚焦注册事件
$('input[name="xx"]').focus(function() {
var typeahead = typeahead_ele.data('typeahead');
typeahead.query = '';
typeahead.ajaxExecute('');
});

// 光标聚焦
$('input[name="xx"]')[0].focus();

});