autocomplete

  1 <!doctype html>
  2 <html>
  3 <style>
  4 body {
  5     margin-left: 0px;
  6     margin-top: 0px;
  7     margin-right: 0px;
  8     margin-bottom: 0px;
  9 }
 10 .auto_hidden {
 11     width:204px;border-top: 1px solid #333;
 12     border-bottom: 1px solid #333;
 13     border-left: 1px solid #333;
 14     border-right: 1px solid #333;
 15     position:absolute;
 16     display:none;
 17 }
 18 .auto_show {
 19     width:204px;
 20     border-top: 1px solid #333;
 21     border-bottom: 1px solid #333;
 22     border-left: 1px solid #333;
 23     border-right: 1px solid #333;
 24     position:absolute;
 25     z-index:9999; /* 设置对象的层叠顺序 */
 26     display:block;
 27 }
 28 .auto_onmouseover{
 29     color:#ffffff;
 30     background-color:highlight;
 31     width:100%;
 32 }
 33 .auto_onmouseout{
 34     color:#000000;
 35     width:100%;
 36     background-color:#ffffff;
 37 }
 38 </style>
 39 <script language="javascript">
 40 <!--
 41 var $ = function (id) {
 42     return "string" == typeof id ? document.getElementById(id) : id;
 43 }
 44 var Bind = function(object, fun) {
 45     return function() {
 46         return fun.apply(object, arguments);
 47     }
 48 }
 49 function AutoComplete(obj,autoObj,arr){
 50     this.obj=$(obj);        //输入框
 51     this.autoObj=$(autoObj);//DIV的根节点
 52     this.value_arr=arr;        //不要包含重复值
 53     this.index=-1;          //当前选中的DIV的索引
 54     this.search_value="";   //保存当前搜索的字符
 55 }
 56 AutoComplete.prototype={
 57     //初始化DIV的位置
 58     init: function(){
 59         this.autoObj.style.left = this.obj.offsetLeft + "px";
 60         this.autoObj.style.top  = this.obj.offsetTop + this.obj.offsetHeight + "px";
 61         this.autoObj.style.width= this.obj.offsetWidth - 2 + "px";//减去边框的长度2px
 62     },
 63     //删除自动完成需要的所有DIV
 64     deleteDIV: function(){
 65         while(this.autoObj.hasChildNodes()){
 66             this.autoObj.removeChild(this.autoObj.firstChild);
 67         }
 68         this.autoObj.className="auto_hidden";
 69     },
 70     //设置值
 71     setValue: function(_this){
 72         return function(){
 73             _this.obj.value=this.seq;
 74             _this.autoObj.className="auto_hidden";
 75         }
 76     },
 77     //模拟鼠标移动至DIV时,DIV高亮
 78     autoOnmouseover: function(_this,_div_index){
 79         return function(){
 80             _this.index=_div_index;
 81             var length = _this.autoObj.children.length;
 82             for(var j=0;j<length;j++){
 83                 if(j!=_this.index ){
 84                     _this.autoObj.childNodes[j].className=‘auto_onmouseout‘;
 85                 }else{
 86                     _this.autoObj.childNodes[j].className=‘auto_onmouseover‘;
 87                 }
 88             }
 89         }
 90     },
 91     //更改classname
 92     changeClassname: function(length){
 93         for(var i=0;i<length;i++){
 94             if(i!=this.index ){
 95                 this.autoObj.childNodes[i].className=‘auto_onmouseout‘;
 96             }else{
 97                 this.autoObj.childNodes[i].className=‘auto_onmouseover‘;
 98                 this.obj.value=this.autoObj.childNodes[i].seq;
 99             }
100         }
101     }
102     ,
103     //响应键盘
104     pressKey: function(event){
105         var length = this.autoObj.children.length;
106         //光标键"↓"
107         if(event.keyCode==40){
108             ++this.index;
109             if(this.index>length){
110                 this.index=0;
111             }else if(this.index==length){
112                 this.obj.value=this.search_value;
113             }
114             this.changeClassname(length);
115         }
116         //光标键"↑"
117         else if(event.keyCode==38){
118             this.index--;
119             if(this.index<-1){
120                 this.index=length - 1;
121             }else if(this.index==-1){
122                 this.obj.value=this.search_value;
123             }
124             this.changeClassname(length);
125         }
126         //回车键
127         else if(event.keyCode==13){
128             this.autoObj.className="auto_hidden";
129             this.index=-1;
130         }else{
131             this.index=-1;
132         }
133     },
134     //程序入口
135     start: function(event){
136         if(event.keyCode!=13&&event.keyCode!=38&&event.keyCode!=40){
137             this.init();
138             this.deleteDIV();
139             this.search_value=this.obj.value;
140             var valueArr=this.value_arr;
141             valueArr.sort();
142             if(this.obj.value.replace(/(^\s*)|(\s*$)/g,‘‘)==""){ return; }//值为空,退出
143             try{ var reg = new RegExp("(" + this.obj.value + ")","i");}
144             catch (e){ return; }
145             var div_index=0;//记录创建的DIV的索引
146             for(var i=0;i<valueArr.length;i++){
147                 if(reg.test(valueArr[i])){
148                     var div = document.createElement("div");
149                     div.className="auto_onmouseout";
150                     div.seq=valueArr[i];
151                     div.onclick=this.setValue(this);
152                     div.onmouseover=this.autoOnmouseover(this,div_index);
153                     div.innerHTML=valueArr[i].replace(reg,"<strong>$1</strong>");//搜索到的字符粗体显示
154                     this.autoObj.appendChild(div);
155                     this.autoObj.className="auto_show";
156                     div_index++;
157                 }
158             }
159         }
160         this.pressKey(event);
161         window.onresize=Bind(this,function(){this.init();});
162     }
163 }
164 //-->
165 </SCRIPT>
166 <body>
167 <h1 align="center">自动完成函数(Autocomplete Function)</h1>
168     <div align="center"><input type="text" style="width:300px;height:20px;font-size:14pt;" id="o" onkeyup="autoComplete.start(event)"></div>
169     <div class="auto_hidden" id="auto"><!--自动完成 DIV--></div>
170 <script>
171     var autoComplete=new AutoComplete(‘o‘,‘auto‘,[‘b0‘,‘b12‘,‘b22‘,‘b3‘,‘b4‘,‘b5‘,‘b6‘,‘b7‘,‘b8‘,‘b2‘,‘abd‘,‘ab‘,‘acd‘,‘accd‘,‘b1‘,‘cd‘,‘ccd‘,‘cbcv‘,‘cxf‘]);
172 </SCRIPT>
173 </body>
174 </html>
时间: 2024-11-08 22:16:05

autocomplete的相关文章

JQuery UI之Autocomplete(2)

1.Autocomplete获取后台数据 首先引入css和js文件,以及对应的HTML代码如下: <link href="../css/jquery-ui.css" rel="stylesheet" /> <script type="text/javascript" src="../js/jquery-1.9.1.min.js" ></script> <script type=&quo

c#+jquery.autocomplete.js

html代码: $(document).ready(function () { $.ajax({ type: "POST", contentType: "json", url: "a.ashx?action=findlist", data: "{}", dataType: "html", success: function (data) { var dataset = eval('(' + data + '

JQuery UI之Autocomplete(4)多值输入、远程缓存与组合框

1.多值输入 首先加入相关的css和js文件,以及对应的HTML代码如下: <link href="../css/jquery-ui.css" rel="stylesheet" /> <script type="text/javascript" src="../js/jquery-1.9.1.min.js" ></script> <script type="text/java

jq 之Autocomplete 引发联想及思考

前情纪要:JQuery UI 是以 JQuery 为基础的开源 JavaScript 网页用户界面代码库.包含底层用户交互.动画.特效和可更换主题的可视控件,这些控件主要包括:Accordion,Autocomplete,ColorPicker,Dialog,Slider,Tabs,DatePicker,Magnifier,ProgressBar,Spinner等,其中Autocomplete能够非常容易的帮我们实现类似于百度搜索的智能提示功能. 我现在要实现的是在订单中心下单时,实现通过输入客

百度地图之自动提示--autoComplete

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>百度地图之

JQuery 插件 autocomplete

最近有个功能就是对文本框里的内容模糊查询,并出现一个下拉框对模糊查询出来的内容进行选择.最开始写的时候我就想起以前的公司遇到过,用的是rpc(简称人品差),but我已经记不得咋个实现的了,然后各种求助以前的同事.然而他们都不晓得咋个弄了.好吧,咋办呢,我就问旁边的同事有没有遇到过这种类似的功能,怎么做的,早点问也不至于时间白白浪费吧.于是就有了autocomplete.我的知识面不广,所以现在我也尽量在总结,不要笑. 进入主题: 官网地址:api.jqueryui.com/autocomplet

自动完成--autoComplete插件

js下载地址:https://github.com/devbridge/jQuery-Autocomplete 1.引入js,引入css --start--------------------------------------------------------------------------------------------- 1.autoComplete()方法 $(selector).autoComplete(配置对象); 具体使用 配置属性 1) lookup 类型:字符串数组或

JQuery Autocomplete实战

废话不多说,先看效果!~ 需要引入的资源如下 <link rel="stylesheet" href="/css/jquery.autocomplete.css" type="text/css"> <script type="text/javascript" src="/lib/jquery.min.js"></script><!--1.8.3--> <

jquery autocomplete 自动补全

写在前面 autocomplete是jqueryUI里的一个插件 效果和说明可以访问这里,作用类似于搜索时的自动提示: 相信用过jQuery autocomplete 自动补全功能同学有不少,但是往往我们所对应的需求不同,有的仅仅是为了省事,敲两个字就有一堆可供选择的信息可供选择,但并不是所有需求都是这样的,我们还有这样的需求,敲两个字,将这个文字对应的实体绑定出来. 主要的参数 jQuery UI Autocomplete常用的参数有: Source:用于指定数据来源,类型为String.Ar