最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于javascript實現仿百度輸入框自動匹配功能

 更新時間:2016年01月03日 10:51:48   投稿:lijiao  
這篇文章主要介紹了基于javascript實現仿百度輸入框自動匹配功能的相關資料,需要的朋友可以參考下

本文實例講解了基于javascript實現仿百度輸入框自動匹配功能的詳細代碼,現在很多網站都有這種效果,在文本框輸入一個字符,下邊會出來相匹配的內容,這個代碼就演示了這個功能是如何完成的,當然,這是個靜態(tài)的,你可以將提示的內容從數據庫讀取出來,要用到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> 

希望本文所述對大家學習javascript程序設計有所幫助。

相關文章

  • JavaScript事件監(jiān)聽器詳細介紹

    JavaScript事件監(jiān)聽器詳細介紹

    這篇文章主要介紹了JavaScript事件監(jiān)聽器詳細介紹,文章圍繞主題展開詳細的內容介紹,具有一定的參考價值,感興趣的小伙伴可以參考一下
    2022-09-09
  • 前端如何控制并發(fā)請求舉例詳解

    前端如何控制并發(fā)請求舉例詳解

    在項目中我們會遇到一次請求多個接口,當所有請求結束后進行操作,也會遇到多個請求(大量)同時進行請求資源,這篇文章主要給大家介紹了關于前端如何控制并發(fā)請求舉例的相關資料,需要的朋友可以參考下
    2024-09-09
  • 前端加密常用的幾種方式匯總

    前端加密常用的幾種方式匯總

    這篇文章主要介紹了前端加密常用的幾種方式,前端加密技術包括Base64編碼、哈希算法、對稱加密和非對稱加密,這些方法各有特點,適用于不同的場景,文中通過代碼介紹的非常詳細,需要的朋友可以參考下
    2025-01-01
  • JavaScript?進階問題列表(各種js代碼段66-107)

    JavaScript?進階問題列表(各種js代碼段66-107)

    從基礎到進階,測試你有多了解?JavaScript,刷新你的知識,或者幫助你的?coding?面試!?:muscle:?:rocket:?我每周都會在這個倉庫下更新新的問題,
    2024-11-11
  • JS簡單獲取當前日期和農歷日期的方法

    JS簡單獲取當前日期和農歷日期的方法

    這篇文章主要介紹了JS簡單獲取當前日期和農歷日期的方法,涉及javascript日期運算與字符串轉換相關操作技巧,需要的朋友可以參考下
    2017-04-04
  • JavaScript 替換所有匹配內容及正則替換方法

    JavaScript 替換所有匹配內容及正則替換方法

    這篇文章主要介紹了JavaScript 替換所有匹配內容,文中給大家提到了使用正則表達式替換方法,通過實例代碼給大家介紹的非常詳細,需要的朋友可以參考下
    2020-02-02
  • 關于textarea的直觀換行的一些研究材料

    關于textarea的直觀換行的一些研究材料

    關于textarea的直觀換行的一些研究材料...
    2006-10-10
  • JS+CSS實現淡入式焦點圖片幻燈切換效果的方法

    JS+CSS實現淡入式焦點圖片幻燈切換效果的方法

    這篇文章主要介紹了JS+CSS實現淡入式焦點圖片幻燈切換效果的方法,實例分析了javascript操作圖片、css等元素實現幻燈片的技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-02-02
  • js事件流、事件委托與事件階段實例詳解

    js事件流、事件委托與事件階段實例詳解

    事件委托應用在很多開發(fā)場景之中,但是很多同學對委托的原理、特別是對JS原生實現委托不太了解,下面這篇文章主要給大家介紹了關于js事件流、事件委托與事件階段的相關資料,需要的朋友可以參考下
    2022-02-02
  • JavaScript/jQuery 表單美化插件小結

    JavaScript/jQuery 表單美化插件小結

    用過一些表單美化的工具,覺得不錯,特地分享一下
    2012-02-02

最新評論

中牟县| 获嘉县| 丹寨县| 钟祥市| 洛隆县| 仪陇县| 邹城市| 明溪县| 汉阴县| 怀安县| 楚雄市| 将乐县| 竹山县| 建昌县| 古田县| 滁州市| 中牟县| 杭州市| 宜春市| 城口县| 郸城县| 招远市| 蓝田县| 镇坪县| 丹棱县| 富阳市| 喀什市| 杂多县| 当雄县| 宜阳县| 池州市| 平凉市| 周口市| 阿图什市| 视频| 神农架林区| 阿拉善盟| 大田县| 青铜峡市| 榆中县| 获嘉县|