search
HomeWeb Front-endJS TutorialEnter the javascript:sugggestion.js_javascript trick for the auto-suggest search prompt function

Copy code The code is as follows:

/**
* Function: The code in this js file implements the [Input automatic search prompt] function. For example, entering some characters into the Baidu and Google search boxes will give some prompts in the form of a drop-down list, which improves the user experience
* Instructions for use: See suggestions.txt file
* Author: sunfei (Sun Fei) Date: 2013.08.21
*/
var SugObj = new Object();

$(document).ready(function(){

// After the file is loaded, obtain the input box attribute information to ensure that the display effect of the search prompt data and the data in the text input box are consistent
//Use the search prompt function input box default ID
SugObj.keywords_input_id = "keywords_input";
//Search input box height
SugObj.keywords_input_height = $("#" SugObj.keywords_input_id "").height();
//Search input box width
SugObj.keywords_input_width = $(" #" SugObj.keywords_input_id "").width();
//Search input box width font color
SugObj.keywords_input_color = $("#" SugObj.keywords_input_id "").css("color");
//Search input box width font size
SugObj.keywords_input_font_size = $("#" SugObj.keywords_input_id "").css("font-size");
//Value entered by the user
SugObj.keywords_input_value = null;

//Set the style of the div that displays search prompts
//The ID of the DIV that displays the prompt information
SugObj.suggestion_div_id = "sug_layer_div";
// Default prompt information DIV style
$("#" SugObj.suggestion_div_id "").addClass("sugLayerDiv");
//Set the DIV width according to the input box
$("#" SugObj.suggestion_div_id "").css("width",SugObj.keywords_input_width);
//$("#" SugObj.suggestion_div_id "").css("position","relative");
//$( "#" SugObj.suggestion_div_id "").css("overflow","hidden");//Hide when DIV content overflows
//$("#" SugObj.suggestion_div_id "").css("background" ,"#fff");//DIV background color
//$("#" SugObj.suggestion_div_id "").css("border","#c5dadb 1px solid");//DIV border style
//$("#" SugObj.suggestion_div_id "").css("display","none");//DIV initial hiding

//The prompt result displays the number of prompts by default
SugObj. default_showItem_count = 10;
//Set the number displayed when clicking "more"
SugObj.more_showItem_count = 20;
//Mark the position of the up and down keys
SugObj.cursor_now_position = -1;
});


//Performance considerations: If the user immediately transmits a letter to the server, the load on the server will be too large.
//So consider changing it to Each request is sent with a delay of 0.5s (to be considered)

$(document).ready(function(){

//The id of the input box is keywords_input, here the keyup event of the input box is monitored
$("#" SugObj.keywords_input_id "").keyup(function(event){
if((event.keyCode >= 48 && event.keyCode = 96 && event.keyCode (event.keyCode >= 65 && event.keyCode // Get the value of the input box ֵ
var kw = $("#" SugObj.keywords_input_id "").val();
//Remove the spaces at both ends of the input string
kw = kw.replace(/ (^s*)|(s*$)/g,"");
if (kw == "") {
//Clear DIV content
$("#" SugObj.suggestion_div_id " ").empty();
//Hide DIV
$("#" SugObj.suggestion_div_id "").css("display","none");
} else {
/ /Save the user input value into the SugObj object
SugObj.keywords_input_value = kw;
//Run the Ajax request result
runSearchAjax(0);
}
}else if(event.keyCode == 38) { //Up Arrow
if (--SugObj.cursor_now_position == -1) {//Determine whether it has been moved to the text box after decrementing by one
$("#" SugObj.keywords_input_id " ").val(SugObj.keywords_input_value);
//Remove the style of the prompt result #fff-white
$("#showDataTable tr.line").css("background","#fff");
}else if(SugObj.cursor_now_position == -2) {//Press Up-Arrow after the text box to move to the last line
//The search prompt result index starts from 0
var index = $ ("#showDataTable tr.line").length - 1;
//If the search submission result is 0, return
if (index return;
}
//Get the last prompt result
$("#" SugObj.keywords_input_id "").val($($("#showDataTable tr.line")[index]).text());
$ ($("#showDataTable tr.line")[index]).siblings().css("background","#fff").end().css("background","#c0c0c0");
SugObj.cursor_now_position = index;
}else {
$("#" SugObj.keywords_input_id "").val($($("#showDataTable tr.line")[SugObj.cursor_now_position]).text ());
$($("#showDataTable tr.line")[SugObj.cursor_now_position]).siblings().css("background","#fff").end().css("background ","#c0c0c0");
}
}else if(event.keyCode == 40) { //Down Arrow
var trCount = $("#showDataTable tr.line").length;
if (SugObj.cursor_now_position == trCount) {//Determine whether the cursor_now_position value exceeds the list number limit after adding one operation
//If it exceeds, change the cursor_now_position value to the initial value
SugObj.cursor_now_position = - 1;
//Set the value in the text box to the user’s search
$("#" SugObj.keywords_input_id "").val(SugObj.keywords_input_value);
//Remove the prompt results Style
$("#showDataTable tr").css("background","#fff");
}else {
$("#" SugObj.keywords_input_id "").val($($("#showDataTable tr.line")[SugObj.cursor_now_position]).text()); //Display the current results in In the input box
$($("#showDataTable tr.line")[SugObj.cursor_now_position]).siblings().css("background","#fff").end().css("background" ,"#c0c0c0");
}
}//End if
});

//Hide the search prompt when the cursor leaves the input box
$("#" SugObj .keywords_input_id "").blur(function(){

var intId = window.setInterval(function(){
$("#" SugObj.suggestion_div_id "").css("display", "none");
window.clearInterval(intId);
},200);

$("#" SugObj.suggestion_div_id " tr.line").click(function(){
window.clearInterval(intId);
$("#" SugObj.keywords_input_id "").val($(this).text());
$("#" SugObj.keywords_input_id "" ).focus();
SugObj.cursor_now_position = -1;
runSearchAjax(0);
});

$("#" SugObj.suggestion_div_id " tr.moreline") .click(function(){
window.clearInterval(intId);
$("#" SugObj.keywords_input_id "").focus();
SugObj.cursor_now_position = -1;
runSearchAjax (1);
});
});

});

//isMore is 1: if there are more than twenty items, only twenty will be displayed, if there are less If there are more than twenty items, the number will be displayed.
//isMore is 0: if there are more than ten items, only ten will be displayed. If there are less than ten, the number will be displayed.
function runSearchAjax(isMore) {
$. ajax({
type: "GET",
dataType: "json",
url:$("#" SugObj.keywords_input_id "").attr("searchURL"),
data: {
"keywords_input":escape($("#" SugObj.keywords_input_id "").val())
},
success:function(data,status) {
if (data. sugList == null || data.sugList == undefined || data.sugList.length == 0) {
$("#" SugObj.suggestion_div_id "").empty();
$("# " SugObj.suggestion_div_id "").css("display","none");
} else {
//var result = $.parseJSON(data.sugList);
var result = data. sugList;
var dataArray = [];
$.each(result,function(i,value){
dataArray.push(value);
});
//Get records The number of
var dataItemLength = dataArray.length;
if (dataItemLength return; //If the search submission result is 0, then return
}

var layerLabel = [];
layerLabel.push(" ");//Create a table
if (isMore == 0) {
if (dataItemLength for (var i = 0; i layerLabel.push(" layerLabel.push(" class='line' > ");
}
}else{
for (var i = 0; i layerLabel.push(" layerLabel.push(" class='line' >");
}
layerLabel.push(" layerLabel.push(" class='moreline'> ");
}
} else if (isMore == 1) {
if (dataItemLength for (var i = 0; i layerLabel.push(" < ;tr style='cursor:pointer;color:" SugObj.keywords_input_color ";font-size:" SugObj.keywords_input_font_size "' ");
layerLabel.push(" class='line' > ");
}
}else{
for (var i = 0; i layerLabel.push(" layerLabel.push(" class='line' > ");
}
}
}else{
for (var i = 0; i layerLabel.push(" layerLabel .push(" class='line' > ");
}
}
layerLabel.push("
" dataArray[i] "
" dataArray[i ] "
");
layerLabel.push(" more...
" dataArray[i] "
" dataArray[i] "
" dataArray[i] "
");
var layer = layerLabel.join("");
//Display DIV
$("#" SugObj.suggestion_div_id "" ).css("display","block");
//First clear all child elements under #searchResult
$("#" SugObj.suggestion_div_id "").empty();
/ /Insert the newly created table into #searchResult
$("#" SugObj.suggestion_div_id "").append(layer);
$("#showDataTable tr").css("color",SugObj .keywords_input_color);
$("#showDataTable tr").css("font-size",SugObj.keywords_input_font_size);
//Listen to the mouse hover event of the prompt box
$("tr. line").hover(function(){
$("tr.line").css("background","#fff");
$(this).css("background","# c0c0c0");
},function(){
$(this).css("background","#fff");
});
}
}
});
}

//The coordinates of the input box change
function ChangeCoords() {
//Get the distance from the leftmost end, pixel, integer
var left = $("#" SugObj.keywords_input_id "").offsetLeft;
//Get the distance from the top, pixels, integer
var top = $("#" SugObj.keywords_input_id "").offsetTop keywords_input_height;
//Redefine CSS attributes
$("#" SugObj.suggestion_div_id "").css("left",left "px");
$("#" SugObj.suggestion_div_id " ").css("top",top "px");
}

//Listen to the mouse click event of the search prompt results
function hoverAction(data) {
// Hide search prompt DIV
$("#" SugObj.suggestion_div_id "").css("display","none");
//Add click data to the search prompt input box
$( "#" SugObj.suggestion_div_id "").val(data);
//Focus the cursor in the search prompt input box
$("#" SugObj.suggestion_div_id "").focus();
//Change the cursor_now_position value to the initial value
cursor_now_position = -1;
//Run the Ajax method and send a request to the server
runSearchAjax(0);
}

/ /The size change of the form will trigger the resize() event, just call the ChangeCoords() method within the event
$(window).resize(ChangeCoords);
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
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Custom Google Search API Setup TutorialCustom Google Search API Setup TutorialMar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

What is 'this' in JavaScript?What is 'this' in JavaScript?Mar 04, 2025 am 01:15 AM

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)