Name
Type
minChars
Number
|
Default:
1
|
执行autocomplete的最小值
The minimum number of characters a user has to type before the autocompleter activates.
|
delay
Number
|
Default:
400 for remote, 10 for local
|
显示自动自动完成选择框的延迟时间
The delay in milliseconds the autocompleter waits after a keystroke to activate itself.
|
cacheLength
Number
|
Default:
10
|
缓存长度
The
number of backend query results to store in cache. If set to 1 (the
current result), no caching will happen. Must be >= 1.
|
matchSubset
Boolean
|
Default:
true
|
匹配子集
Whether
or not the autocompleter can use a cache for more specific queries.
This means that all matches of "foot" are a subset of all matches for
"foo". Usually this is true, and using this options decreases server
load and increases performance. Only useful with cacheLength settings
bigger than one, like 10.
|
matchCase
Boolean
|
Default:
false
|
是否敏感的比较。
Whether or not the comparison is case sensitive. Important only if you use caching.
|
matchContains
Boolean
|
Default:
false
|
匹配内容。
Whether
or not the comparison looks inside (i.e. does "ba" match "foo bar") the
search results. Important only if you use caching. Don't mix with
autofill.
|
mustMatch
Boolean
|
Default:
false
|
必须完全匹配。
If
set to true, the autocompleter will only allow results that are
presented by the backend. Note that illegal values result in an empty
input box.
|
selectFirst
Boolean
|
Default:
true
|
如果设置为true则第一个值会被自动选中。
If
this is set to true, the first autocomplete value will be automatically
selected on tab/return, even if it has not been handpicked by keyboard
or mouse action. If there is a handpicked (highlighted) result, that
result will take precedence.
|
extraParams
Object
|
|
额外的参数。
Extra
parameters for the backend. If you were to specify { bar:4 }, the
autocompleter would call my_autocomplete_backend.php?q=foo&bar=4
(assuming the input box contains "foo"). The param can be a function
that is called to calculate the param before each request.
|
formatItem
Function
|
Default:
Assumes that a single row contains a single value.
|
格式化结果内容
Provides
advanced markup for an item. For each row of results, this function
will be called. The returned value will be displayed inside an LI
element in the results list. Autocompleter will provide 4 parameters:
the results row, the position of the row in the list of results
(starting at 1), the number of items in the list of results and the
search term.
|
formatMatch
Function
|
Default:
formatItem is used
|
格式化匹配项
Use
this option if you want to limit the data that autocomplete searches
for matches. For example, there may be items you want displayed to the
user, but don't want included in the data that's searched. Gets called
with the same arguments as formatItem.
|
formatResult
Function
|
Default:
Assumes either plain data to use as result or uses the same value as provided by formatItem.
|
格式化结果
Similar
to formatItem, but provides the formatting for the value to be put into
the input field. Again three arguments: Data, position (starting with
one) and total number of data.
|
multiple
Boolean
|
Default:
false
|
是否允许多选
Whether to allow more than one autocompleted-value to enter.
|
multipleSeparator
String
|
Default:
", "
|
Seperator to put between values when using multiple option. |
width
Number
|
Default:
width of the input Element
|
选择框的宽度 |
autoFill
Boolean
|
Default:
false
|
当选中自动提示框里面的选项时INPUT框内是否自动补全 |
max
Number
|
Default:
10
|
自动完成提示的显示数量 |
highlight
Boolean
, Function
|
Default:
Wraps the search term in a <strong> Element
|
高亮显示当匹配到选择框的元素。
Whether
and how to highlight matches in the select box. Set to false to
disable. Set to a function to customize. The function gets the value as
the first argument and the search term as the second and must return
the formatted value.
|
scroll
Boolean
|
Default:
true
|
当结果集大于默认高度时是否使用卷轴显示 |
scrollHeight
Number
|
Default:
180
|
自动完成提示的卷轴高度用像素大小表示 |
相关推荐
`jquery.autocomplete.js`是jQuery的一个插件,它扩展了原生的jQuery库,增加了自动完成的功能。这个插件主要由两个核心部分组成:一个是前端展示部分,负责渲染和展示联想结果;另一个是数据处理部分,用于获取和...
- **初始化Autocomplete**:在JavaScript中,我们需要初始化Autocomplete插件,配置其各种参数,如数据源、回调函数等。 ```javascript $(document).ready(function() { $("#autocomplete-input").autocomplete({ ...
《jQuery Autocomplete插件详解与应用实践》 在Web开发中,提高用户体验是至关重要的,而自动完成(Autocomplete)功能则是实现这一目标的有效手段之一。jQuery库中的Autocomplete插件,通过简单易用的API,帮助...
《jQuery.autocomplete自动提示插件详解》 在Web开发中,提供用户友好的输入提示功能是一种常见的需求,例如搜索引擎的自动补全、电子商务网站的商品搜索等。jQuery库为我们提供了丰富的插件来实现这一功能,其中`...
《jQuery Autocomplete插件详解与应用》 在Web开发中,提供用户友好的输入体验是至关重要的,而jQuery Autocomplete插件就是实现这一目标的有效工具。这个插件,以其便捷性和强大的功能,使得在文本框中实现自动...
在jQuery库中,有一个名为`jquery.autocomplete.js`的插件,它提供了实现这一功能的强大工具。 首先,`jquery.autocomplete.js`是基于jQuery框架的,因此使用该插件前需要确保页面已经引入了jQuery库。jQuery是一个...
`jQuery.autocomplete.js` 是一个流行的JavaScript库jQuery的扩展插件,主要用于实现输入框的自动补全功能。这个插件极大地增强了用户在网页上的交互体验,尤其在处理大量可选项时,用户可以通过输入部分文字快速...
《jQuery Autocomplete插件详解与应用》 在Web开发中,提供用户友好的输入提示功能是一种常见的需求,jQuery Autocomplete插件为此提供了完美的解决方案。这个类包“jquery.autocomplete.zip”包含了实现这一功能所...
本教程将详细介绍如何结合Jquery.AutoComplete插件和微软的ChineseConverter.dll库,实现在网页上进行汉字、拼音和简拼的模糊搜索功能。 首先,Jquery.AutoComplete是jQuery UI库中的一个组件,它能为输入框添加...
`jQuery Autocomplete` 是一个非常流行的 jQuery 插件,用于实现自动完成(或下拉建议)功能。在网页表单中,它能够为用户提供快速输入建议,提高用户体验。这个"jquery.autocomplete干净demo"提供了一个简洁且功能...
`jQuery Autocomplete` 是一个非常流行的 jQuery 插件,它为输入框提供了一个动态下拉建议的功能,让用户在输入时能够快速找到并选择匹配项。这个插件极大地提升了用户界面的交互性和用户体验,尤其在处理大量数据或...
`jQuery.autocomplete` 是一个基于 jQuery 的插件,用于实现自动补全功能,它极大地简化了在网页上创建高效、动态的输入字段的过程。这个插件通常被用于搜索框,帮助用户快速找到他们想要的选项,提高用户体验。在这...
jQuery Autocomplete 是一个非常实用的插件,它为网页表单输入框提供了自动补全功能,极大地提升了用户体验。这个压缩包“jquery autocomplete下载.rar”包含了实现这一功能所需的基本文件,包括样式表、HTML 模板、...
jQuery.Autocomplete 是一款广泛使用的 jQuery 插件,它为网页中的输入框提供了自动完成(autocomplete)和建议提示(input suggest)功能。这款插件通过 AJAX 方式动态加载数据,使得用户在输入过程中可以接收到...
jQuery库提供了一个强大的Autocomplete插件,名为jQuery UI Autocomplete,它可以帮助开发者轻松实现这种功能。本文将深入探讨该插件的参数使用,以便开发者能够灵活定制自己的自动填充效果。 首先,我们需要引入...
**jQuery Autocomplete插件** `jquery.autocomplete.js`是jQuery UI的一部分,提供了一个自动补全功能。当用户在输入框中键入字符时,该插件可以实时搜索数据库或其他数据源,展示匹配的建议列表,帮助用户快速完成...
**jQuery的Autocomplete插件**是用于实现网页输入框自动补全功能的一种高效解决方案,它极大地提升了用户体验,尤其是在用户需要从大量数据中选择时。这个插件是基于jQuery库的,因此,首先需要确保在项目中引入了...
**jQuery AutoComplete 插件详解** jQuery AutoComplete 是一个非常流行的前端插件,它为输入框提供了自动补全的功能,极大地提升了用户在网页上的输入体验。这个插件基于 jQuery 库,因此,使用前需要先引入 ...
jQuery.Autocomplete 是一个广受欢迎的 jQuery 插件,它提供了输入框的自动完成和建议提示功能,极大地增强了用户体验。该插件允许通过 AJAX 方式动态加载数据,使得实时搜索和推荐变得更加便捷。然而,在处理中文...