本文只是对jQueryUI的AutoComplete插件官方文档的摘录,写的比较好的中文使用教程请参见下面的资料:
囧月 坐井观天 jQuery UI Autocomplete 体验 http://www.cnblogs.com/lwme/archive/2012/02/12/jquery-ui-autocomplete.html
AutoComplete:文本框的自动填充控件AutoComplete,类似于Google搜索输入框提供的功能。为什么有这样的功能呢,因为用户都很懒
Autocomplete, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.
By giving an Autocomplete field focus or entering something into it, the plugin starts searching for entries that match and displays a list of values to choose from. By entering more characters, the user can filter down the list to better matches.
This can be used to enter previous selected values, for example you could use Autocomplete for entering tags, to complete an address, you could enter a city name and get the zip code, or maybe enter email addresses from an address book.
如果选项数据量很少,比如10条以内,个人觉得使用radio或者select更好。
<meta charset="utf-8"> <script> $(function() { var availableTags = [ "ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme" ]; $( "#tags" ).autocomplete({ source: availableTags }); }); </script> <div class="demo"> <div class="ui-widget"> <label for="tags">Tags: </label> <input id="tags" /> </div> </div><!-- End demo -->
You can pull data in from a local and/or a remote source: Local is good for small data sets (like an address book with 50 entries), remote is necessary for big data sets, like a database with hundreds or millions of entries to select from.
Autocomplete can be customized to work with various data sources, by just specifying the source option. A data source can be:
The data from local data, a url or a callback can come in two variants:
[ "Choice1", "Choice2" ]
[ { label: "Choice1", value: "value1" }, ... ]
The label property is displayed in the suggestion menu. The value will be inserted into the input element after the user selected something from the menu. If just one property is specified, it will be used for both, eg. if you provide only value-properties, the value will also be used as the label.
When a String is used, the Autocomplete plugin expects that string to point to a URL resource that will return JSON data. It can be on the same host or on a different one (must provide JSONP). The Autocomplete plugin does not filter the results, instead the request parameter "term" gets added to the URL, which the server-side script should use for filtering the results. The data itself can be in the same format as the local data described above.
<script> $(function() { $( "#tags" ).autocomplete({ source: "search.php", minLength: 2, select: function( event, ui ) { // ui.item ? // "Selected: " + ui.item.value + " aka " + ui.item.id : // "Nothing selected, input was " + this.value; } }); }); </script>
[ { "id": "Ciconia ciconia", "label": "White Stork", "value": "White Stork" }, { "id": "Netta rufina", "label": "Red-crested Pochard", "value": "Red-crested Pochard" }, { "id": "Burhinus oedicnemus", "label": "Stone Curlew", "value": "Stone Curlew" }, { "id": "Galerida cristata", "label": "Crested Lark", "value": "Crested Lark" }, { "id": "Saxicola rubicola", "label": "European Stonechat", "value": "European Stonechat" }, { "id": "Circus aeruginosus", "label": "Western Marsh Harrier", "value": "Western Marsh Harrier" }, { "id": "Podiceps cristatus", "label": "Great Crested Grebe", "value": "Great Crested Grebe" } ]
使用回调函数主要有两种用途:
1、对本地的选项数据进行筛选/过滤;
2、使用ajax从远端获取选项数据;
The third variation, the callback, provides the most flexibility, and can be used to connect any data source to Autocomplete. The callback gets two arguments:
The label is always treated as text, if you want the label to be treated as html you can use Scott González' html extension. The demos all focus on different variations of the source-option - look for the one that matches your use case, and take a look at the code.
使用ajax获取json数据的代码样本,request.term 是用户输入的内容。
$(function() { $("#tags").autocomplete({ source: function (request, response) { $.ajax({ url: "searchAction!search.action", type: "POST", data: { term: request.term }, dataType: "json", success: function(rsp) { response((rsp && rsp.data) ? rsp.data : []); // 假定选项数据在rsp.data中 }, error: function() { response([]); // 出错了也要response一下,否则“忙碌”的小图标就会不停地转 } }); }, minLength: 2, select: function (event, ui) { // ui.item ? ui.item.value : this.value } }); });