`

jQuery AutoSuggest Plugin

阅读更多

How It Works

AutoSuggest will turn any regular text input box into a rad auto-complete box. It will dynamically create all the HTML elements that it needs to function. You don't need to add any extra HTML to work with AutoSuggest. Also, AutoSuggest uses ZERO images! All styling is done 100% in the included CSS file. This means it is super easy to customize the look of everything! You only need to edit the included CSS file. You can even use images if you want, just add the appropriate lines of code into the CSS file.

As you type into the AutoSuggest input box, it will filter through it's Data and "suggest" matched Data items to you. You can pass in an Object of Data toAutoSuggest or you can have it call a URL as you type to get it's Data from.AutoSuggest will display the matched Data items in a selectable list, which is 100% customizable. You have the option of structuring the HTML elements of that list however you want via the formatList callback function. You case an example of this in the second example above.

When you type into the input box and the "suggestion" dropdown list appears, a few things happen:

  • class of "loading" is applied to the main AutoSuggest ul while the data is loaded. That class is then removed when all processing has finished and before the suggestion results list is made visible.
  • As you hover over each suggested option in the list a class of "selected" is added to that item, and then removed when you mouseout.
  • When you make a selection the item is added to the input box. Also there is a hidden input field generated for each AutoSuggest box that stores the values (comma separated) of each item you have selected. This input box will have a unique ID as well as a class name of "as-values".

The plugin expects the Data passed into it (or gathered from the URL) to be formatted in JSON. JSON is an extremely easy format to work with, and if you don't already... you should :) To learn more about JSON, check out my post/video, An Introduction to JSON.

When an AJAX request is made the search string is sent over in a param named "q" by default. However you can change that name with the queryParam option. Here is a default example AJAX request: http://www.mysite.com/your/script/?q=mick
"mick" would be the search query that was typed into the input box. Be sure to setup your server-side code to grab that param and send back some results.

As of AutoSuggest version 1.4 you can now create selections by using the tab orcomma keys. To do this simply type something into the box and hit the tab orcomma keys. The selection is added to AutoSuggest in the exact same manner as if it were chosen from the Results dropdown.

AutoSuggest has been tested (and works) in: IE7 & IE8, Firefox, Safari, Opera, and Chrome.

How To Use It

Obviously you need to make sure you have the latest jQuery library (at least 1.3) already loaded in your page. After that it's really simple, just add the following code to your page (make sure to wrap your code in jQuery's ready function):

$(function(){
$("input[type=text]").autoSuggest(data);
});

The above line of code will apply AutoSuggest to all text type input elements on the page. Each one will be using the same set of Data. If you want to have multipleAutoSuggest fields on your page that use different sets of Data, make sure you select them separately. Like this:

$(function(){
$("div.someClass input").autoSuggest(data);
$("#someID input").autoSuggest(other_data);
});

Doing the above will allow you to pass in different options and different Data sets.

Below is an example of using AutoSuggest with a Data Object and other various options:

var data = {items: [
{value: "21", name: "Mick Jagger"},
{value: "43", name: "Johnny Storm"},
{value: "46", name: "Richard Hatch"},
{value: "54", name: "Kelly Slater"},
{value: "55", name: "Rudy Hamilton"},
{value: "79", name: "Michael Jordan"}
]};
$("input[type=text]").autoSuggest(data.items, {selectedItemProp: "name", searchObjProps:"name"});

Below is an example using a URL to gather the Data Object and other various options:

$("input[type=text]").autoSuggest("http://mysite.com/path/to/script", {minChars: 2, matchCase: true});

Please not that you MUST have an object property of "value" for each data item. (This is now configureable with the selectedValuesProp option). The "value" property will be stored (comma separated) in the hidden input field when chosen from the "suggestion" dropdown list. You can see an example of the "value" property being set for each data item in the example above. Typically the "value" property would contain the ID of the item, so you can send a list of "chosen" IDs to your server.

Below is an example of how to process the data sent via AJAX to your server in PHP:

<?
$input $_GET["q"];
$data array();
// query your DataBase here looking for a match to $input
$query = mysql_query("SELECT * FROM my_table WHERE my_field LIKE '%$input%'");
while ($row = mysql_fetch_assoc($query)) {
$json array();
$json['value'] = $row['id'];
$json['name'] = $row['username'];
$json['image'] = $row['user_photo'];
$data[] = $json;
}
header("Content-type: application/json");
echo json_encode($data);
?>

Options

  • asHtmlIDstring (false by default) - Enables you to specify your own custom ID that will be appended to the top level AutoSuggest UL element's ID name. Otherwise it will default to using a random ID. Example: id="CUSTOM_ID". This is also applies to the hidden input filed that holds all of the selected values. Example: id="as-values-CUSTOM_ID"
  • startTextstring ("Enter Name Here" by default) - Text to display when the AutoSuggest input field is empty.
  • emptyTextstring ("No Results" by default) - Text to display when their are no search results.
  • preFillobject or string (empty object by default) - Enables you to pre-fill the AutoSuggest box with selections when the page is first loaded. You can pass in a comma separated list of values (a string), or an object. When using a string, each value is used as both the display text on the selected item and for it's value. When using an object, the options selectedItemProp will define the object property to use for the display text and selectedValuesProp will define the object property to use for the value for the selected item. Note: you must setup your preFill object in that format. A preFill object can look just like the example objects laid out above.
  • limitTextstring ("No More Selections Are Allowed" by default) - Text to display when the number of selections has reached it's limit.
  • selectedItemPropstring ("value" by default) - Name of object property to use as the display text for each chosen item.
  • selectedValuesPropstring ("value" by default) - Name of object property to use as the value for each chosen item. This value will be stored into the hidden input field.
  • searchObjPropsstring ("value" by default) - Comma separated list of object property names. The values in these objects properties will be used as the text to perform the search on.
  • queryParamstring ("q" by default) - The name of the param that will hold the search string value in the AJAX request.
  • retrieveLimitnumber (false by default) - If set to a number, it will add a '&limit=' param to the AJAX request. It also limits the number of search results allowed to be displayed in the results dropdown box.
  • extraParamsstring ("" by default) - This will be added onto the end of the AJAX request URL. Make sure you add an '&' before each param.
  • matchCasetrue or false (false by default) - Make the search case sensitive when set to true.
  • minCharsnumber (1 by default) - Minimum number of characters that must be entered into the AutoSuggest input field before the search begins.
  • keyDelaynumber (400 by default) - Number of milliseconds to delay after a keydown on the AutoSuggest input field and before search is started.
  • resultsHighlighttrue or false (true by default) - Option to choose whether or not to highlight the matched text in each result item.
  • neverSubmittrue or false (false by default) - If set to true this option will never allow the 'return' key to submit the form that AutoSuggest is a part of.
  • selectionLimitnumber (false by default) - Limits the number of selections that are allowed to be made to the number specified.
  • showResultListtrue or false (true by default) - If set to false, the Results Dropdown List will never be shown at any time.
  • startcallback function - Custom function that is run only once on each AutoSuggest field when the code is first applied.
  • selectionClickcallback function - Custom function that is run when a previously chosen item is clicked. The item that is clicked is passed into this callback function as 'elem'.
    Example: selectionClick: function(elem){ elem.fadeTo("slow", 0.33); }
  • selectionAddedcallback function - Custom function that is run when a selection is made by choosing one from the Results dropdown, or by using the tab/comma keys to add one. The selection item is passed into this callback function as 'elem'.
    Example: selectionAdded: function(elem){ elem.fadeTo("slow", 0.33); }
  • selectionRemovedcallback function - Custom function that is run when a selection removed from the AutoSuggest by using the delete key or by clicking the "x" inside the selection. The selection item is passed into this callback function as 'elem'.
    Example: selectionRemoved: function(elem){ elem.fadeTo("fast", 0, function(){ elem.remove(); }); }
  • formatListcallback function - Custom function that is run after all the data has been retrieved and before the results are put into the suggestion results list. This is here so you can modify what & how things show up in the suggestion results list.
  • beforeRetrievecallback function - Custom function that is run right before the AJAX request is made, or before the local objected is searched. This is used to modify the search string before it is processed. So if a user entered "jim" into the AutoSuggest box, you can call this function to prepend their query with "guy_". Making the final query = "guy_jim". The search query is passed into this function. Example: beforeRetrieve: function(string){ return string; }
  • retrieveCompletecallback function - Custom function that is run after the ajax request has completed. The data object MUST be returned if this is used. Example: retrieveComplete: function(data){ return data; }
  • resultClickcallback function - Custom function that is run when a search result item is clicked. The data from the item that is clicked is passed into this callback function as 'data'.
    Example: resultClick: function(data){ console.log(data); }
  • resultsCompletecallback function - Custom function that is run when the suggestion results dropdown list is made visible. Will run after every search query.

The formatList option will hand you 2 objects:

  • data: This is the data you originally passed into AutoSuggest (or retrieved via an AJAX request)
  • elem: This is the HTML element you will be formatting (the 'result' li item).

 

In order to add extra things to the 'result' item (like an image) you will need to make sure you pass that data into AutoSuggest.
Below is an example of formatList in action:

 

formatList: function(data, elem){
var my_image = data.image;
var new_elem = elem.html("add/change stuff here, put image here, etc.");
return new_elem;
}

You MUST return the HTML object. formatList will run on each 'result' item.

分享到:
评论

相关推荐

    Jquery autosuggest 模糊搜索 提示

    **jQuery Autosuggest 模糊搜索实现** 在网页开发中,为用户提供实时的搜索建议是一种常见的交互方式,可以显著提升用户体验。jQuery 的 `autocomplete` 插件就提供了这样的功能,允许用户在输入时得到模糊匹配的...

    jquery-autosuggest, Drew Wilson fork 插件writtern的.zip

    jquery-autosuggest, Drew Wilson fork 插件writtern的 jQuery插件Drew Wilson fork 插件writtern的。http://code.drewwilson.com/entry/autosuggest-jquery-plugin工作原理自动 AutoSuggest A

    autosuggest_v21.3

    常见的实现技术包括JavaScript(如jQuery、React等)与Ajax异步请求。 2. 后端实现:后端负责处理请求,进行预测计算,并返回结果。常用的语言有Python、Java、Golang等,配合数据库(如MySQL、Redis)和搜索引擎...

    前端项目-react-autosuggest.zip

    在本文中,我们将深入探讨基于React的开源项目“react-autosuggest”,这是一个符合无障碍网络界面架构(Web Accessibility Initiative - Accessible Rich Internet Applications, WAI-ARIA)的自动补全组件。...

    AUTOSUGGEST

    【标题】"AUTOSUGGEST" 是一个JavaScript实现的自动补全功能,它借鉴了Google Suggest的服务模式,通过AJAX技术来动态获取并显示下拉列表中的建议内容。这个功能在网页输入框中非常常见,能提升用户体验,快速帮助...

    VueAutosuggest一个很棒的Vuejs自动提示组件

    Vue Autosuggest 是一款基于 Vue.js 的高效且可定制的自动提示组件,专为构建智能输入框而设计。这款组件能够帮助开发者轻松实现搜索建议、自动完成等交互功能,提升用户体验。在JavaScript开发中,尤其是在使用Vue....

    autoSuggest:这个jquery插件将根据您在文本字段中提供的文本生成建议基础

    对于自动建议功能,jQuery提供了一个名为“autoSuggest”的插件,可以帮助开发者轻松实现这一功能。 **jQuery autoSuggest插件的使用** 这个jQuery插件的核心功能是根据用户输入的文本动态地从预定义的数据源中...

    autosuggest_v2下载

    【autosuggest_v2下载】是针对网页开发中的一个技术组件,它主要涉及到JavaScript(JS)脚本编程。在网页交互中,自动填充或自动建议功能是提升用户体验的关键要素,尤其在用户输入搜索查询或者填写表单时。这个...

    autosuggest自动提示的下拉列表框

    类似于google网站的自动提示功能,自动提示下拉列表框原始文件地址:http://www.cssrain.cn/article.asp?id=106,我对原始功能进行小小的修改。修改功能如下: 1.可以在一个页面中同时显示多个下拉列表框,带自动提示...

    heise5yuetian#yougar0.github.io#WordPress Plugin - AutoSuggest s

    一、漏洞简介 二、漏洞影响 三、复现过程 四、参考链接

    prototype.autoSuggest:Prototype 的 AutoSuggest 插件,从 Drew Wilson 的 jQuery 插件移植而来

    `Prototype AutoSuggest` 是一个基于 `Prototype JavaScript` 库的插件,它的设计灵感来源于 `Drew Wilson` 开发的 `jQuery` 插件。这个插件的主要功能是为输入框提供自动提示功能,用户在输入时可以接收到与输入...

    基于jquery的让textarea自适应高度的插件

    此外,还有其他类似的插件,如`autosize`和`autosuggest`,它们提供了更多特性,如自动缩进、预览等功能,开发者可以根据具体需求选择适合的解决方案。总之,通过使用jQuery和相关的插件,我们可以轻松地优化...

    Using and Developing an AutoSuggest ASP.NET Server Control Library

    在本主题中,我们将深入探讨"Using and Developing an AutoSuggest ASP.NET Server Control Library",这是一种提升用户体验的重要技术,特别是在输入字段中提供即时建议方面。 **一、AutoSuggest功能介绍** ...

    jQuery-multiAutocomplete:一个jQuery插件,允许在输入中进行多个自动完成

    jQuery-multiAutocomplete 一个jQuery插件,允许一个输入中多个自动完成功能。 用其他语言阅读:。 示范 兼容性 jQuery-multiAutocomplete已在主要浏览器上与jQuery 1.7+一起测试: ...autosuggest true 它允许实时

    TagDragon:jQuery 自动建议插件

    TagDragon - jQuery Autosuggest 插件 注意:TagDragon 曾经是一个强制性的捐赠软件 jQuery 插件。 截至目前,它是免费的,捐赠给社区使用、分叉和改进。 原作者的支持是有限的。 随意使用。 ####Introduction ...

    jQuery插件之自动完成(有例子).rar

    **jQuery插件之自动完成详解** 在Web开发中,用户界面的交互性和用户体验往往成为衡量一个网站或应用质量的重要标准。jQuery作为一个强大的JavaScript库,极大地简化了DOM操作、事件处理和动画效果,使得开发者能够...

    php-mysql-autosuggest:使用php,jquery和mysql的简单自动建议示例

    【标题】"php-mysql-autosuggest"是一个项目,展示了如何使用PHP、jQuery和MySQL来实现一个简单的自动建议功能。这种功能通常用于搜索输入框,当用户在输入时,系统会根据已输入的部分自动显示出可能的匹配项,提高...

Global site tag (gtag.js) - Google Analytics