AutoComplete 在获取焦点后,随着用户键入的内容,可以在预订的数据源中查找和已输入的内容相匹配的内容列表供用户选择。
这可以用作之前输入过的内容也可以用作自动填充相关内容,比如根据城市名,自动填充邮编等。
你可以使用本地数据源或是远程数据源,本地数据一般使用小数据集合,比如包含50条记录的通讯录,远程数据源一般为保护大量记录的数据库。
基本用法
本例为使用AutoComplete的基本用法,通过本地数据源(数组)定义一组语言列表,用户输入字母后,包含该字母的语言会作为列表显示出来:
5 |
< title >jQuery UI Demos</ title > |
6 |
< link rel = "stylesheet" href = "themes/trontastic/jquery-ui.css" /> |
7 |
< script src = "scripts/jquery-1.9.1.js" ></ script > |
8 |
< script src = "scripts/jquery-ui-1.10.1.custom.js" ></ script > |
36 |
$("#tags").autocomplete({ |
43 |
< div class = "ui-widget" > |
44 |
< label for = "tags" >Tags: </ label > |

语调支持
某些语言支持语调字符,比如Jörn 中的ö,希望在输入o时,也能显示包含ö的内容,AutoComplete支持使用function来定义Source属性:
5 |
< title >jQuery UI Demos</ title > |
6 |
< link rel = "stylesheet" href = "themes/trontastic/jquery-ui.css" /> |
7 |
< script src = "scripts/jquery-1.9.1.js" ></ script > |
8 |
< script src = "scripts/jquery-ui-1.10.1.custom.js" ></ script > |
12 |
var names = ["Jörn Zaefferer", |
20 |
var normalize = function (term) { |
22 |
for (var i = 0; i < term.length ; i++) { |
23 |
ret += accentMap[term.charAt(i)] |
29 |
$("#developer").autocomplete({ |
30 |
source: function (request, response) { |
32 |
= new RegExp($.ui.autocomplete |
33 |
.escapeRegex(request.term),"i"); |
34 |
response($.grep(names, function (value) { |
38 |
return matcher.test(value) |
39 |
|| matcher.test(normalize(value)); |
47 |
< div class = "ui-widget" > |
49 |
< label for = "developer" >Developer: </ label > |
50 |
< input id = "developer" /> |

分类支持
本例是提供简单扩展AutoComplete 组件实现了一个自定义的custom.catcomplete UI组件以支持AutoComplete的分类支持。自定义组件有兴趣的可以参见jQuery 的Widget Factory。一般无需自定义UI组件,如果需要,可以在网站查找是否有人已经实现你需要的UI组件,实在不行才自定义UI组件,使用Widget Factory自定义组件的方法并不十分直观(这是因为JavaScript使用了面向“原型”的面向对象方法,而非通常的使用类的面向对象方法)。
5 |
< title >jQuery UI Demos</ title > |
6 |
< link rel = "stylesheet" href = "themes/trontastic/jquery-ui.css" /> |
7 |
< script src = "scripts/jquery-1.9.1.js" ></ script > |
8 |
< script src = "scripts/jquery-ui-1.10.1.custom.js" ></ script > |
11 |
.ui-autocomplete-category { |
19 |
$.widget("custom.catcomplete", $.ui.autocomplete, { |
20 |
_renderMenu: function (ul, items) { |
23 |
$.each(items, function (index, item) { |
24 |
if (item.category != currentCategory) { |
25 |
ul.append("< li class = 'ui-autocomplete-category' >" |
26 |
+ item.category + "</ li >"); |
27 |
currentCategory = item.category; |
29 |
that._renderItemData(ul, item); |
37 |
{ label: "anders", category: "" }, |
38 |
{ label: "andreas", category: "" }, |
39 |
{ label: "antal", category: "" }, |
40 |
{ label: "annhhx10", category: "Products" }, |
41 |
{ label: "annk K12", category: "Products" }, |
42 |
{ label: "annttop C13", category: "Products" }, |
43 |
{ label: "anders andersson", category: "People" }, |
44 |
{ label: "andreas andersson", category: "People" }, |
45 |
{ label: "andreas johnson", category: "People" } |
48 |
$("#search").catcomplete({ |
56 |
< label for = "search" >Search: </ label > |
其中custom.catcomplete为自定义的UI组件,因此$( “#search” ).catcomplete 使用catcomplete ,而非autocomplete。
