JS实现仿百度输入框自动匹配功能的示例代码

JS实现仿百度输入框自动匹配功能的示例代码

作者: 字体:[增加 减小] 类型:转载

本篇文章主要是对JS实现仿百度输入框自动匹配功能的示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助

现在很多网站都有这种效果,在文本框输入一个字符,下边会出来相匹配的内容,这个代码就演示了这个功能是如何完成的,当然,这是个静态的,你可以将提示的内容从数据库读取出来,要用到AJAX那东东。

复制代码 代码如下:

<HTML>
<HEAD>
<title>带输入匹配的文本框</title>
<style>
body,div
{
font-family:verdana;
line-height:100%;
font-size:10pt;
}
input
{
width:320px;
}
h1
{
text-align:center;
font-size:2.2em;
}
#divc {
border:1px solid
#555;
}
.des
{
width:500px;
background-color:lightyellow;
border:1px solid
#555;
padding:25px;
margin-top:25px;
}
.mouseover
{
color:#ffffff;
background-color:highlight;
width:100%;
cursor:default;
}
.mouseout
{
color:#000;
width:100%;
background-color:#ffffff;
cursor:default;
}
</style>
<SCRIPT
LANGUAGE="JavaScript">
<!--
function
jsAuto(instanceName,objID)
{
this._msg = [];
this._x = null;
this._o
= document.getElementById( objID );
if (!this._o) return;
this._f =
null;
this._i = instanceName;
this._r = null;
this._c = 0;
this._s =
false;
this._v = null;
this._o.style.visibility =
"hidden";
this._o.style.position = "absolute";
this._o.style.zIndex =
"9999";
this._o.style.overflow = "auto";
this._o.style.height =
"50";
return this;
};

jsAuto.prototype.directionKey=function() { with (this)
{
var e =
_e.keyCode ? _e.keyCode : _e.which;
var l =
_o.childNodes.length;
(_c>l-1 || _c<0) ? _s=false : "";

if( e==40 && _s
)
{
_o.childNodes[_c].className="mouseout";
(_c >= l-1) ? _c=0 : _c
++;
_o.childNodes[_c].className="mouseover";
}
if( e==38 &&
_s )
{
_o.childNodes[_c].className="mouseout";
_c--<=0 ? _c =
_o.childNodes.length-1 :
"";
_o.childNodes[_c].className="mouseover";
}
if( e==13
)
{
if(_o.childNodes[_c] &&
_o.style.visibility=="visible")
{
_r.value =
_x[_c];
_o.style.visibility = "hidden";
}
}
if( !_s )
{
_c =
0;
_o.childNodes[_c].className="mouseover";
_s = true;
}
}};

// mouseEvent.
jsAuto.prototype.domouseover=function(obj) { with
(this)
{
_o.childNodes[_c].className = "mouseout";
_c =
0;
obj.tagName=="DIV" ? obj.className="mouseover" :
obj.parentElement.className="mouseover";
}};
jsAuto.prototype.domouseout=function(obj)
{
obj.tagName=="DIV"
? obj.className="mouseout" :
obj.parentElement.className="mouseout";
};
jsAuto.prototype.doclick=function(msg)
{ with (this)
{
if(_r)
{
_r.value = msg;
_o.style.visibility =
"hidden";
}
else
{
alert("javascript autocomplete ERROR :\n\n can
not get return object.");
return;
}
}};

// object method;
jsAuto.prototype.item=function(msg)
{
if(
msg.indexOf(",")>0 )
{
var arrMsg=msg.split(",");
for(var i=0;
i<arrMsg.length; i++)
{
arrMsg[i] ? this._msg.push(arrMsg[i]) :
"";
}
}
else
{
this._msg.push(msg);
}
this._msg.sort();
};
jsAuto.prototype.append=function(msg)
{ with (this)
{
_i ? "" : _i = eval(_i);
_x.push(msg);
var div =
document.createElement("DIV");
//bind event to object.
div.onmouseover =
function(){_i.domouseover(this)};
div.onmouseout =
function(){_i.domouseout(this)};
div.onclick =
function(){_i.doclick(msg)};
var re = new RegExp("(" + _v +
")","i");
div.style.lineHeight="140%";
div.className = "mouseout";
if
(_v) div.innerHTML = msg.replace(re ,
"<strong>$1</strong>");
div.style.fontFamily = "verdana";

_o.appendChild(div);
}};
jsAuto.prototype.display=function() {
with(this)
{
if(_f && _v!="")
{
_o.style.left =
_r.offsetLeft;
_o.style.width = _r.offsetWidth;
_o.style.top =
_r.offsetTop + _r.offsetHeight;
_o.style.visibility =
"visible";
}
else
{
_o.style.visibility="hidden";
}
}};
jsAuto.prototype.handleEvent=function(fValue,fID,event)
{ with (this)
{
var re;
_e = event;
var e = _e.keyCode ? _e.keyCode
: _e.which;
_x = [];
_f = false;
_r = document.getElementById( fID
);
_v = fValue;
_i = eval(_i);
re = new RegExp("^" + fValue + "",
"i");
_o.innerHTML="";

for(var i=0; i<_msg.length;
i++)
{
if(re.test(_msg[i]))
{
_i.append(_msg[i]);
_f =
true;
}
}

_i ? _i.display() : alert("can not get instance");

if(_f)
{
if((e==38 || e==40 ||
e==13))
{
_i.directionKey();
}
else
{
_c=0;
_o.childNodes[_c].className
= "mouseover";
_s=true;
}
}
}};
window.onerror=new
Function("return true;");
//-->
</SCRIPT>
</HEAD>

<BODY>
<div id="divc">
<!--this is the autocomplete
container.-->
</div>
<div align="center">
<input
onkeyup="jsAutoInstance.handleEvent(this.value,‘auto‘,event)"
id="auto">
</div>

<SCRIPT LANGUAGE="JavaScript">
<!--
var jsAutoInstance =
new
jsAuto("jsAutoInstance","divc");
jsAutoInstance.item("a-start,b-start,c-start,d-start,e-start,f-start,g-start,h-start,i-start,j-start,k-start,l-start,m-start,n-start,o-start,p-start,q-start,r-start,s-start,t-start,u-start,v-start,w-start,x-start,y-start,z-start,z-start,a-start,b-start,c-start,d-start,e-start,f-start,g-start,h-start,i-start,j-start,k-start,l-start,m-start,n-start,o-start,p-start,q-start,r-start,s-start,t-start,u-start,v-start,w-start,x-start,y-start,z-start,u-start,v-start,w-start,x-start,y-start,z-start,z-start,a-start,b-start,c-start,y-start,z-start,z-start,a-start,b-start,c-start,d-start,e-start,f-start,g-start,h-start,i-start,s-start,w-start,x-start,y-start,z-start,z-start,a-start,b-start,c-start,d-start,e-start,f-start,g-start,h-start,i-start,a-start,b-start,c-start,d-start,e-start,z-start,z-start");
jsAutoInstance.item("blueDestiny");
jsAutoInstance.item("BlueMiracle,Blue");
jsAutoInstance.item("angela,geniuslau");
jsAutoInstance.item("never-online");
//-->
</SCRIPT>
<center>请在输入框输入一个字母:</center>
</BODY>
</HTML>

时间: 2024-11-20 23:14:24

JS实现仿百度输入框自动匹配功能的示例代码的相关文章

Jquery 仿百度搜索引擎自动完成功能

源代码如下所示: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>自动完成例子</title> <script type="text/javascript" src="js/jquery-1.4.1.min.js"><

基于jQuery仿百度首页换肤功能代码

分享一款基于jQuery仿百度首页换肤功能代码.这是一款类似百度首页的自定义背景图片切换特效代码. 在线预览   源码下载 实现的代码. html代码: <a href="#">换肤</a> <div class="heitiao"></div> <div class="con"><img src="images/content.png" /></d

【转】仿百度输入框智能提示的js代码

转自:http://www.jb51.net/article/40783.htm 对于我这个JS菜鸟,能找到这样的实属不容易啊!!! 刚开始老大让做这个功能,真是一点头绪都没有,万分感谢!!! 最近客户需求老是变更,不过有些是因为客户催得急,我没有那么快能完成,所以先做了一个雏形给他们,后来再慢慢改.比如雏形那里我做了一个下拉列表 给他们,事实上他们的数据有200多条,用个下拉列表的话很不现实,你能找那么多?而且那个下拉列表该有多长啊?所以很自然的,我想到了百度那个智能提示 的功能. 参考了一下

类似百度输入框自动完成

1.前台代码 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InputAutoCompelete.aspx.cs" Inherits="HraWeb.InputAutoCompelete" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"

仿百度搜索,匹配历史搜索

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <title>历史搜索</title> <script type="text

点滴积累【JS】---JS实现仿百度模糊搜索效果

效果: HTML代码: 1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InputText.aspx.cs" Inherits="DropDownLikeBaiDu.InputText" %> 2 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN&qu

ArcGIS JS 学习笔记1 用ArcGIS JS 实现仿百度地图的距离量测和面积量测

一.开篇 在博客注册了三年,今天才决定写第一篇博客,警告自己不要懒!!! 二.关于ArcGIS JS 版本选择 在写这篇博客时ArcGIS JS 4.0正式版已经发布.它和3.x版本的不同是,Map不在是一个控件,而真的只是一张“图”,Map(4.0版本)需要在一个View里面来展示,在MapView里面就是一张平面图,在SceneView里面就一张三维地图.同一张地图在不同的View里面就可以呈现出不同的效果.但是4.0版本才是一个最初的版本,还有很多3.x有的功能没有被加入到其中.所以我打算

仿百度的输入提示功能

/// <reference path="jquery-1.7.1.min.js" /> //实现搜索输入框的输入提示js类 function oSearchSuggest(searchFuc) { var input = $('#txtNaviSearchBox'); var suggestWrap = $('#gov_search_suggest'); var key = ""; var init = function () { input.bind

输入框自动提示功能

<script type="text/javascript" src="./js/jquery.min.js"></script><script type="text/javascript">$(function(){ $(":button").click(function() { /* Act on the event */ if($(":input").val() !