用js实现输入提示(自动完成)

开发 后端
以前也写过一个jQuery的这种插件 ,但是很多地方根本不用jQuery,这个功能也有很多其它库支持,但是为了用这个功能而加载很多js插件,这样效率明显下降了很多,而且这个东西平时也很常用,所以一决心自己写了个相对比较独立的。

以前也写过一个jQuery的这种插件 ,但是很多地方根本不用jQuery,这个功能也有很多其它库支持,但是为了用这个功能而加载很多js插件,这样效率明显下降了很多,而且这个东西平时也很常用,所以一决心自己写了个相对比较独立的。

完成有以下功能:

输入字符会把以输入字符开头的提示出来。

支持上下方向键选择提示选项,支持循环

支持绑定一个数组提示,支持ajax传递输入框值请求数据。

支持多个选择的dom元素一块绑定数据实现输入提示。各dom元素也可以单独绑定自己的数据实现输入提示,互不影响。

支持中文。

首先是js的核心部分,其各部分都有较详细的说明,代码如下:

view source print ?

 

  1.   ;( function (window){    
  2.  
  3.   /* 插件开始 */    
  4.  
  5.   var autoCompletefunction (o){    
  6.  
  7.        var handler=( function (){    
  8.  
  9.            var handlerfunction (e,o){ return new handler.prototype.init(e,o); }; /* 为每个选择的dom都创建一个相对应的对象,这样选择多个dom时可以很方便地使用 */    
  10.  
  11.            handler.prototype={    
  12.  
  13.                e: null , o: null , timer: null , show:0, input: null , popup: null ,    
  14.  
  15.                init: function (e,o){ /* 设置初始对象 */    
  16.  
  17.                    this .e=e, this .o=o,    
  18.  
  19.                    this .inputthis .e.getElementsByTagName( this .o.input)[0],    
  20.  
  21.                    this .popupthis .e.getElementsByTagName( this .o.popup)[0],    
  22.  
  23.                    this .initEvent(); /* 初始化各种事件 */    
  24.  
  25.               },    
  26.  
  27.               match: function (quickExpr,value,source){ /* 生成提示 */    
  28.  
  29.                   var li = null ;    
  30.  
  31.                   for ( var i in source){    
  32.  
  33.                       if ( value.length>0 && quickExpr.exec(source[i])!= null ){    
  34.  
  35.                           li = document.createElement( 'li' );    
  36.  
  37.                           li.innerHTML = '' +source[i]+ 'a>' ;    
  38.  
  39.                          this .popup.appendChild(li);    
  40.  
  41.                       }    
  42.  
  43.                   }    
  44.  
  45.                   if ( this .popup.getElementsByTagName( 'a' ).length)    
  46.  
  47.                       this .popup.style.display'block' ;    
  48.  
  49.                   else    
  50.  
  51.                        this .popup.style.display'none' ;    
  52.  
  53.                },    
  54.  
  55.                ajax: function (type,url,quickExpr,search){ /* ajax请求远程数据 */    
  56.  
  57.                   var xhr = window.ActiveXObject ? new ActiveXObject( "Microsoft.XMLHTTP" ) : new XMLHttpRequest();    
  58.  
  59.                    xhr.open(type,url, true ); /* 同异步在此修改 */    
  60.  
  61.                    xhr.setRequestHeader( "Content-Type" , "application/x-www-form-urlencoded" );    
  62.  
  63.                   var thatthis ;    
  64.  
  65.                   xhr.onreadystatechange = function (){    
  66.  
  67.                       if (xhr.readyState==4) {    
  68.  
  69.                            if (xhr.status==200) {    
  70.  
  71.                                var data = eval(xhr.responseText);    
  72.  
  73.                               that.match(quickExpr,search,data); /* 相同于成功的回调函数 */    
  74.  
  75.                            } else {    
  76.  
  77.                                alert( "请求页面异常!" ); /* 请求失败 */    
  78.  
  79.                            }    
  80.  
  81.                        }    
  82.  
  83.                    };    
  84.  
  85.                    xhr.send( null );    
  86.  
  87.                },    
  88.  
  89.               fetch: function (ajax,search,quickExpr){    
  90.  
  91.                    var thatthis ;    
  92.  
  93.                    this .ajax(ajax.type,ajax.url+search,quickExpr,search);    
  94.  
  95.               },    
  96.  
  97.                initEvent: function (){ /* 各事件的集合 */    
  98.  
  99.                    var thatthis ;    
  100.  
  101.                   this .input.onfocus = function (){    
  102.  
  103.                        if ( this .inputValue) this .value = this .inputValue;    
  104.  
  105.                        var valuethis .value, quickExpr=RegExp( '^' +value, 'i' ), selfthis ;    
  106.  
  107.                        var els = that.popup.getElementsByTagName( 'a' );    
  108.  
  109.                        if (els.length>0) that.popup.style.display = 'block' ;    
  110.  
  111.                        that.timer=setInterval( function (){    
  112.  
  113.                            if (value!=self.value){ /* 判断输入内容是否改变,兼容中文 */    
  114.  
  115.                               value=self.value;    
  116.  
  117.                                that.popup.innerHTML'' ;    
  118.  
  119.                                if (value!= '' ){    
  120.  
  121.                                   quickExpr=RegExp( '^' +value);    
  122.  
  123.                                    if (that.o.source) that.match(quickExpr,value,that.o.source);    
  124.  
  125.                                    else if (that.o.ajax) that.fetch(that.o.ajax,value,quickExpr);    
  126.  
  127.                                }    
  128.  
  129.                            }    
  130.  
  131.                        },200);    
  132.  
  133.                    };    
  134.  
  135.                   this .input.onblur = function (){ /*  输入框添加事件 */    
  136.  
  137.                        if ( this .value!= this .defaultValue) this .inputValue = this .value;    
  138.  
  139.                        clearInterval(that.timer);    
  140.  
  141.                        var current=-1; /* 记住当前有焦点的选项 */    
  142.  
  143.                        var els = that.popup.getElementsByTagName( 'a' );    
  144.  
  145.                        var len = els.length-1;    
  146.  
  147.                       var aClick = function (){    
  148.  
  149.                           that.input.inputValue = this .firstChild.nodeValue;    
  150.  
  151.                            that.popup.innerHTML'' ;    
  152.  
  153.                            that.popup.style.display'none' ;    
  154.  
  155.                           that.input.focus();    
  156.  
  157.                        };    
  158.  
  159.                        var aFocus = function (){    
  160.  
  161.                            for ( var i=len; i>=0; i--){    
  162.  
  163.                                if ( this .parentNode===that.popup.children[i]){    
  164.  
  165.                                   current = i;    
  166.  
  167.                                    break ;    
  168.  
  169.                                }    
  170.  
  171.                            }    
  172.  
  173.                            //that.input.value = this.firstChild.nodeValue;    
  174.  
  175.                            for ( var k in that.o.elemCSS.focus){    
  176.  
  177.                                this .style[k] = that.o.elemCSS.focus[k];    
  178.  
  179.                            }    
  180.  
  181.                        };    
  182.  
  183.                       var aBlurfunction (){    
  184.  
  185.                           for ( var k in that.o.elemCSS.blur)    
  186.  
  187.                               this .style[k] = that.o.elemCSS.blur[k];    
  188.  
  189.                        };    
  190.  
  191.                        var aKeydown = function (event){    
  192.  
  193.                            eventevent = event || window.event; /* 兼容IE */    
  194.  
  195.                            if (current === len && event.keyCode===9){ /* tab键时popup隐藏 */    
  196.  
  197.                                that.popup.style.display = 'none' ;    
  198.  
  199.                            } else if (event.keyCode==40){ /* 处理上下方向键事件方便选择提示的选项 */    
  200.  
  201.                                current++;    
  202.  
  203.                                if (current<-1current=len;    
  204.  
  205.                               if (current>len){    
  206.  
  207.                                    current=-1;    
  208.  
  209.                                   that.input.focus();    
  210.  
  211.                                } else {    
  212.  
  213.                                    that.popup.getElementsByTagName( 'a' )[current].focus();    
  214.  
  215.                                }    
  216.  
  217.                            } else if (event.keyCode==38){    
  218.  
  219.                                current--;    
  220.  
  221.                               if (current==-1){    
  222.  
  223.                                    that.input.focus();    
  224.  
  225.                               } else if (current<-1){    
  226.  
  227.                                    current = len;    
  228.  
  229.                                    that.popup.getElementsByTagName( 'a' )[current].focus();    
  230.  
  231.                                } else {    
  232.  
  233.                                   that.popup.getElementsByTagName( 'a' )[current].focus();    
  234.  
  235.                                }    
  236.  
  237.                            }    
  238.  
  239.                        };    
  240.  
  241.                        for ( var i=0; i<els.length; i++){ /* 为每个选项添加事件 */    
  242.  
  243.                            els[i].onclick = aClick;    
  244.  
  245.                            els[i].onfocus = aFocus;    
  246.  
  247.                            els[i].onblur = aBlur;    
  248.  
  249.                            els[i].onkeydown = aKeydown;    
  250.  
  251.                        }    
  252.  
  253.                    };    
  254.  
  255.                    this .input.onkeydown = function (event){    
  256.  
  257.                       eventevent = event || window.event; /* 兼容IE */    
  258.  
  259.                        var els = that.popup.getElementsByTagName( 'a' );    
  260.  
  261.                        if (event.keyCode==40){    
  262.  
  263.                            if (els[0]) els[0].focus();    
  264.  
  265.                        } else if (event.keyCode==38){    
  266.  
  267.                           if (els[els.length-1]) els[els.length-1].focus();    
  268.  
  269.                        } else if (event.keyCode==9){    
  270.  
  271.                            if (event.shiftKey== true ) that.popup.style.display = 'none' ;    
  272.  
  273.                        }    
  274.  
  275.                    };    
  276.  
  277.                    this .e.onmouseover = function (){ that.show=1; };    
  278.  
  279.                    this .e.onmouseout = function (){ that.show=0; };    
  280.  
  281.                    addEvent.call(document, 'click' , function (){    
  282.  
  283.                        if (that.show==0){    
  284.  
  285.                            that.popup.style.display'none' ;    
  286.  
  287.                        }    
  288.  
  289.                    }); /* 处理提示框dom元素不支持onblur的情况 */    
  290.  
  291.                }    
  292.  
  293.            };    
  294.  
  295.            handlerhandler.prototype.init.prototype=handler.prototype; /* JQuery style,这样我们在处的时候就不用每个dom元素都用new来创建对象了 */    
  296.  
  297.            return handler; /* 把内部的处理函数传到外部 */    
  298.  
  299.        })();    
  300.  
  301.        if ( this .length){ /* 处理选择多个dom元素 */    
  302.  
  303.            for ( var athis .length-1; a>=0; a--){ /* 调用方法为每个选择的dom生成一个处理对象,使它们不互相影响 */    
  304.  
  305.                handler( this [a],o);    
  306.  
  307.            }    
  308.  
  309.        } else { /* 处理选择一个dom元素 */    
  310.  
  311.            handler( this ,o);    
  312.  
  313.       }    
  314.  
  315.        return this ;    
  316.  
  317.   };    
  318.  
  319.   return window.autoComplete = autoComplete; /* 暴露方法给全局对象 */    
  320.  
  321.   /* 插件结束 */    
  322.  
  323.   })(window);    
  324.  

其中了一些全局的自定义函数,如addEvent和在例子中将要用到的getElementsByClassName函数如下:

view source print ?

 

  1. var getElementsByClassName = function (searchClass, node, tag) { /* 兼容各浏览器的选择class的方法;(写法参考了博客园:http://www.cnblogs.com/rubylouvre/archive/2009/07/24/1529640.html  
  2. ,想了解更多请看这个地址) */    
  3.  
  4.       nodenode = node || document, tagtag = tag ? tag.toUpperCase() : "*" ;    
  5.  
  6.        if (document.getElementsByClassName){ /* 支持getElementsByClassName的浏览器 */    
  7.  
  8.           var temp = node.getElementsByClassName(searchClass);    
  9.  
  10.            if (tag== "*" ){    
  11.  
  12.                return temp;    
  13.  
  14.           } else {    
  15.  
  16.                var ret = new Array();    
  17.  
  18.                for ( var i=0; i<temp.length; i++)    
  19.  

【编辑推荐】

  1. JavaScript跨域总结与解决办法
  2. 使用Javascript开发移动应用程序
  3. 10个令人惊奇的HTML5和JavaScript效果
  4. JavaScript初学者应注意的七个细节
责任编辑:金贺 来源: JavaEye博客
相关推荐

2011-06-16 10:21:52

jQuery

2019-02-15 15:07:39

AndroidiOS移动系统

2022-07-27 20:36:57

webJS符号

2022-01-14 14:32:19

Shell脚本Js

2011-06-24 12:58:49

Qt LineEdit

2019-02-18 09:00:00

TextRank算法自然语言处理Python

2022-03-03 10:49:46

Python自动追踪代码

2009-07-16 09:09:36

ibatis自动代码

2012-04-27 10:00:43

jQuery插件

2015-03-24 13:10:49

javascript中关村论坛提示效果

2023-09-01 09:00:00

人工智能

2022-04-06 18:29:58

CSSJS输入框

2024-09-10 08:10:50

2022-05-05 08:02:44

MongoDBNode.js加密

2021-02-23 09:50:42

PythonJSWeb SSH

2009-12-15 14:42:54

Internet协议

2010-06-22 14:58:50

JDOMJavaXML

2024-02-26 12:48:28

ChatGPT人工智能论文

2009-03-31 16:41:38

网络性能网络监控开源

2024-11-05 14:25:00

AI模型
点赞
收藏

51CTO技术栈公众号