search
HomeWeb Front-endJS TutorialjQuery UI Autocomplete experience sharing_jquery

Supported data sources
jQuery UI Autocomplete mainly supports two data formats: string Array and JSON.
There is nothing special about the ordinary Array format, as follows:
Copy code The code is as follows:
[ "cnblogs","blog garden","囧月"]

For Array in JSON format, it is required to have: label and value attributes, as follows:
Copy code The code is as follows:
[{label: "blog garden", value: "cnblogs"}, {label: "囧月", value: "囧Month"}]

The label attribute is used to display in the autocomplete pop-up menu, and the value attribute is the value assigned to the text box after selection.
If one of the attributes is not specified, it will be replaced by the other attribute (i.e. value and label value are the same), as follows:
Copy code The code is as follows:

[{label: "cnblogs"}, {label: "囧月"}]
[{value: "cnblogs"}, {value: "囧月" "}]

If neither label nor value is specified, it cannot be used for autocomplete prompts.
Also note that the JSON key output from the server must be in double quotes, as follows:
Copy code Code As follows:
[{"label": "Blog Garden", "value": "cnblogs"}, {"label": "囧月", "value": "囧月"}]

Otherwise a parsererror error may occur.
Main parameters
Commonly used parameters of jQuery UI Autocomplete are:
Source: used to specify the data source, type is String, Array, Function
String: server-side address used for ajax request, returned Array/JSON format
Array: i.e. string array or JSON array
Function(request, response): Get the input value through request.term, response([Array]) to present the data; (JSONP is this Method)
minLength: When the length of the string in the input box reaches minLength, activate Autocomplete
autoFocus: When the Autocomplete selection menu pops up, automatically select the first one
delay: how many milliseconds to delay activating Autocomplete
Others that are not commonly used will not be listed.
Usage
Suppose there is the following input box on the page:

AJAX request
By specifying the source as the server-side address To implement, as follows:
Copy code The code is as follows:

$("#autocomp") .autocomplete({
source: "remote.ashx",
minLength: 2
});

Then receive it on the server side and output the corresponding results. Please pay attention to the default delivery The parameter name is term:
Copy code The code is as follows:

public void ProcessRequest(HttpContext context )
{
// The query parameter name defaults to term
string query = context.Request.QueryString["term"];
context.Response.ContentType = "text/javascript";
//Output string array or JSON array
context.Response.Write("[{"label":"blog garden","value":"cnblogs"},{"label":"囧月" ,"value":"囧月"}]");
}

Local Array/JSON array
Copy code The code is as follows:

// Local string array
var availableTags = [
"C#",
"C ",
"Java",
"JavaScript",
"ASP",
"ASP.NET",
"JSP",
"PHP",
"Python",
"Ruby"
];
$("#local1").autocomplete({
source: availableTags
});
// Local json array
var availableTagsJSON = [
{ label: "C# Language", value: "C#" },
{ label: "C Language", value: "C " },
{ label: "Java Language", value: " Java" },
{ label: "JavaScript Language", value: "JavaScript" },
{ label: "ASP.NET", value: "ASP.NET" },
{ label: " JSP", value: "JSP" },
{ label: "PHP", value: "PHP" },
{ label: "Python", value: "Python" },
{ label: "Ruby", value: "Ruby" }
];
$("#local2").autocomplete({
source: availableTagsJSON
});

Callback Function method
Acquire custom data by specifying the source as a custom function. The function mainly has 2 parameters (request, response), which are used to obtain the input value, Present results
Get data in local Array mode (imitate Sina Weibo login)
Copy code The code is as follows:

var hosts = ["gmail.com", "live.com", "hotmail.com", "yahoo.com", "cnblogs.com", "Mars.com", "囧月. com"];
$("#email1").autocomplete({
autoFocus: true,
source: function(request, response) {
var term = request.term, //request .term is the input string
ix = term.indexOf("@"),
name = term, // Username
host = "", // Domain name
result = [] ; // result
result.push(term);
// result.push({ label: term, value: term }); // json format
if (ix > -1) {
name = term.slice(0, ix);
host = term.slice(ix 1);
}
if (name) {
var foundHosts = (host ? $. grep(hosts, function(value) {
return value.indexOf(host) > -1;
}) : hosts),
findedResults = $.map(findedHosts, function(value) {
return name "@" value; //Return string format
// return { label: name " @ " value, value: name "@" value }; // json format
});
result = result.concat($.makeArray(findedResults));
}
response(result);//Present the results
}
});

Get data via JSONP
Get it directly from the official DEMO, send an ajax request to the remote server, then process the return result, and finally present it through response:
Copy code The code is as follows:

$("#jsonp").autocomplete({
source: function(request , response) {
$.ajax({
url: "http://ws.geonames.org/searchJSON",
dataType: "jsonp",
data: {
featureClass : "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function(data) {
response($ .map(data.geonames, function(item) {
return {
label: item.name (item.adminName1 ? ", " item.adminName1 : "") ", " item.countryName,
value: item.name
}
}));
}
});
},
minLength: 2
});

Main events
jQuery UI Autocomplete has some events that can be used for additional control at some stages:
create(event, ui): When Autocomplete is created, you can use this event in , some control over the appearance
search(event, ui): Before starting the request, you can return false in this event to cancel the request
open(event, ui): When Autocomplete's result list pops up
focus(event, ui): When any item in Autocomplete's result list gets focus, ui.item is the item that gets focus
select(event, ui): When any item in Autocomplete's result list is selected, ui.item is Selected item
close(event, ui): When the result list of Autocomplete is closed
change(event, ui): When the value changes, ui.item is the selected item
The ui parameters of these events The item attribute (if any) has label and value attributes by default, regardless of whether the data set in the source is an Array or a JSON array, as follows:
Copy code The code is as follows:

["cnblogs","blog garden","囧月"]
[{label: "blog garden", value: " cnblogs"}, {label: "囧月", value: "囧月"}]
[{label: "囧月园", value: "cnblogs", id: "1"}, {label: "囧月" month", value: "囧月", id: "2"}]

If it is the third type, you can also get the value of ui.item.id.
These events can be bound in 2 ways, as follows:
Copy code The code is as follows:

// In parameters
$("#autocomp").autocomplete({
source: availableTags
, select: function(e, ui) {
alert(ui.item .value)
}
});
// Bind through bind
$("#autocomp").bind("autocompleteselect", function(e, ui) {
alert(ui.item.value);
});

The event name used by binding through bind is "autocomplete". The event name, such as "select" is "autocompleteselect".
Autocomplete for multiple values ​​
Under normal circumstances, the autocomplete of the input box only requires one value (such as: javascript); if multiple values ​​​​are needed (such as: javascript, c#, asp.net), you need Bind some events for additional processing:
Return false in the focus event to prevent the value of the input box from being replaced by a single value of autocomplete
Combine multiple values ​​in the select event
Do it in the keydown event of the element Some processing, the reason is the same as 1
Use callback function source to get the last input value and present the result
Or just take the official DEMO code directly:
Copy code The code is as follows:

// Separate multiple values ​​by commas
function split(val) {
return val.split( /,s*/);
}
//Extract the last value of the input
function extractLast(term) {
return split(term).pop();
}
// When pressing the Tab key, cancel setting the value for the input box
function keyDown(event) {
if (event.keyCode === $.ui.keyCode.TAB &&
$(this). data("autocomplete").menu.active) {
event.preventDefault();
}
}
var options = {
// Get focus
focus: function( ) {
// prevent value inserted on focus
return false;
},
// When selecting a value from the autocomplete pop-up menu, add it to the end of the input box and separate it with commas
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms .join(", ");
return false;
}
};
// Multiple values, local array
$("#local3").bind("keydown" , keyDown)
.autocomplete($.extend(options, {
minLength: 2,
source: function(request, response) {
// delegate back to autocomplete, but extract the last term
response($.ui.autocomplete.filter(
availableTags, extractLast(request.term)));
}
}));
// Multiple values, ajax returns json
$("#ajax3").bind("keydown", keyDown)
.autocomplete($.extend(options, {
minLength: 2,
source: function(request, response) {
$.getJSON("remoteJSON.ashx", {
term: extractLast(request.term)
}, response);
}
}));

End
Finally, put the code: Click to download.
For more information, please see the jQuery UI Autocomplete official demo: http://jqueryui.com/demos/autocomplete
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
艾尔登法环ui怎么一直显示艾尔登法环ui怎么一直显示Mar 11, 2024 pm 04:31 PM

在艾尔登法环中这款游戏的ui页面在一段时间以后是会自动进行隐藏的,有很多玩家不知道ui怎么一直显示,玩家可以在显示以及声音配置中选择其中的量表显示配置,点击开启即可。艾尔登法环ui怎么一直显示1、首先我们进入主菜单后,点击【系统配置】。2、在【显示及声音配置】界面,选择其中的量表显示配置。3、点击开启即可完成。

Vue 中常见的 UI 组件库有哪些?Vue 中常见的 UI 组件库有哪些?Jun 11, 2023 am 11:47 AM

Vue是一款流行的JavaScript框架,它使用组件化的方式构建Web应用程序。在Vue生态系统中,有很多UI组件库可以帮助您快速构建漂亮的界面,并提供丰富的功能和交互效果。在本文中,我们将介绍一些常见的VueUI组件库。ElementUIElementUI是一款由饿了么团队开发的Vue组件库,它为开发人员提供了一组优雅,

两位谷歌华人研究员发布首个纯视觉「移动UI理解」模型,四大任务刷新SOTA两位谷歌华人研究员发布首个纯视觉「移动UI理解」模型,四大任务刷新SOTAApr 12, 2023 pm 04:40 PM

对AI来说,「玩手机」可不是一件易事,光是识别各种用户界面(user interface, UI)就是一大难题:不光要识别出各个组件的类型,还要根据其使用的符号、位置来判断组件的功能。对移动设备UI的理解,能够帮助实现各种人机交互任务,比如UI自动化等。之前的工作对移动UI的建模通常依赖于屏幕的视图层次信息,直接利用了UI的结构数据,并借此绕过了从屏幕像素开始对组件进行识别的难题。不过并不是所有的场景下都有可用的视图层次,这种方法通常会因为对象描述的缺失或结构信息的错位而输出错误结果,所以尽管使

探索最受欢迎的jQuery移动UI框架探索最受欢迎的jQuery移动UI框架Feb 27, 2024 pm 12:03 PM

jQuery移动UI框架是一种用于开发移动应用程序的工具,它提供了丰富的界面组件和交互效果,使开发者能够快速构建优秀的移动用户界面。在这篇文章中,我们将探索一些最受欢迎的jQuery移动UI框架,并提供具体的代码示例来帮助读者更好地了解和使用这些框架。1.jQueryMobilejQueryMobile是一个基于HTML5和CSS3的开源移动UI框架,

ui是什么意思的缩写ui是什么意思的缩写Mar 14, 2024 pm 03:20 PM

UI是“User Interface”的缩写,主要用于描述软件的人机交互、操作逻辑和界面美观。UI设计的目的是让软件操作更简单舒适,充分体现其定位和特点。常见的UI设计分为实体UI和虚拟UI,其中虚拟UI广泛应用于互联网领域。

Android 15 Beta 4 全面测试完成 稳定版发布进入倒计时Android 15 Beta 4 全面测试完成 稳定版发布进入倒计时Jul 29, 2024 pm 07:57 PM

日前,谷歌正式向符合条件的Pixel智能手机和平板电脑用户推送了Android15Beta4更新,这标志着Android15操作系统已迈入平台稳定阶段,预示着其稳定版将在接下来的几天内正式与全球用户见面。同时,这一进展也为三星电子的Galaxy设备系列加速其OneUI7.0版本的开发进程注入了新的活力。1.[Android15Beta4推广三星OneUI7.0稳定构建](https://www.cnbeta.com/articles/tech/1427022.htm)随着Android15Bet

ux与ui设计的区别是什么ux与ui设计的区别是什么Sep 27, 2022 pm 03:52 PM

ux与ui设计的区别:1、UX让界面更好用,UI让界面更好看;2、UX让用户实现目标,UI让界面提升品牌感;3、UX核心目标引导用户完成任务,UI不是;4、UI和UX的交付成果不一样,UX的输出包括UX体验报告、功能定义、功能规划、项目进度等,而UI交付的包括视觉和交互、视觉设计、品牌设计、动效设计、组件设计和设计语言等等。

ui是什么意思ui是什么意思Mar 14, 2024 pm 03:09 PM

UI,全称用户界面,指的是软件中人机交互、操作逻辑和界面美观的设计。它分为实体UI和虚拟UI,其中虚拟UI广泛应用于移动互联网。好的UI设计不仅能让软件外观有品位,更重要的是让软件操作变得舒适简易,充分体现软件的定位和特点。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use