jQuery仿百度搜索框智能提示效果代码

直接贴代码。

 

 代码如下 复制代码

(function($) {
    var timeid;
    var lastValue;
    var options;
    var c;
    var d;
    var t;

    $.fn.autoComplete = function(config) {
        c = $(this);
        var defaults = {
            width: c.width(), //提示框的宽度 默认跟文本框一样
            maxheight: 150, //提示框的最大高度
            top: 6,  //与文本框的上下距离
            url: "",   //ajax 请求地址
            type: "post", //ajax 请求类型
            async: false,  //是否异步请求
            autoLength: 0,  //文本长度大于0 就请求服务器
            getValue: function(value){ }, //当回车 或 鼠标点击选中值的时候执行
            clearValue: function(){ }, //当重新请求时清空Value值
            getText: function(text){ } //当回车 或 鼠标点击选中值的时候执行
        };
        options = $.extend(defaults, config);
        var p = c.position();
        d = $('<div id="autoComplete_Group"></div>');
        c.after(d);
        d.css({ "left": p.left, "top": p.top + c.height() + options.top, "width": options.width, "max-height": options.maxheight });
        t = $('<table cellspacing="0" cellpadding="2"></table>');
        d.append(t);
        d.append('<input style="display:none" />');
       
        c.bind("keydown", keydown_process);
       
        c.bind("keyup", keyup_process);
       
        c.bind("blur", blur_process);
       
        d.bind("focus", focus_div);
       
        d.bind("mouseout", mouseout_div);
    }
   
    function blur_process()
    {
        timeid = setTimeout(function(){
            d.hide();
        },200);
    }
   
    function mouseout_div()
    {
        t.find(".nowRow").removeClass("nowRow");
    }
   
    function focus_div()
    {
        clearTimeout(timeid);
        c.focus();
    }
   
    function keydown_process(e)
    {
        if(d.is(":hidden")){
            return;
        }
       
        switch(e.keyCode)
        {
            case 38:
                e.preventDefault();
                var p = t.find(".nowRow").prev();
                if(p.length > 0){
                    d.setScroll(options.maxheight, p);
                    p.mouseover();
                }else{
                    p = t.find("tr:last");
                    if(p.length > 0){
                        d.setScroll(options.maxheight, p);
                        p.mouseover();
                    }
                }
            break;
            case 40:
                e.preventDefault();
                var n = t.find(".nowRow").next();
                if(n.length > 0){
                    d.setScroll(options.maxheight, n);
                    n.mouseover();
                }else{
                    n = t.find("tr:first");
                    if(n.length > 0){
                        d.setScroll(options.maxheight, n);
                        n.mouseover();
                    }
                }
            break;
            case 13:
                e.preventDefault();
                var n = t.find(".nowRow");
                if(n.length > 0){
                    options.getValue(n.find("input:hidden").val());
                    c.val(n.text());
                    options.getText(c.val());
                    lastValue = "";
                    d.hide();
                }
            break;
        }
    }
   
    function keyup_process(e)
    {
        if(e.keyCode == 38 || e.keyCode == 40 || e.keyCode == 13 || e.keyCode == 37 || e.keyCode == 39){
            return;
        }

        if(c.val().length > options.autoLength){
            if(c.val() == lastValue){ 
                return;  //判断是否跟上一次的值相等, 考虑到用户正在打字 避免相同的值多次请求
            }

            lastValue = c.val();  //记录请求值
            options.clearValue(); //清空值
            getData(c, function(data){
                if(data.length == 0){
                    d.hide();
                    return;
                }
                t.find("tr").remove();
                $.each(data, function(){
                    t.append('<tr><td>' + this.text + '<input type="hidden" value="' + this.value + '" /></td></tr>');
                });
                var rows = t.find("tr");
                rows.mouseover(function(){
                    t.find(".nowRow").removeClass("nowRow");
                    $(this).addClass("nowRow");
                });
                rows.click(function(){
                    options.getValue($(this).find("input:hidden").val());
                    c.val($(this).text());
                    options.getText(c.val());
                    lastValue = "";
                    d.hide();
                });
               
                c.setPosition();
                d.show();
            });
        }else{
            lastValue = "";
            d.hide();
        }
    }
   
    function getData(o,process)
    {
        $.ajax({
            type: options.type,
            async: options.async, //控制同步
            url: options.url,
            data: o.attr("id") + "=" + o.val(),
            dataType: "json",
            cache: false,
            success: process,
            Error: function(err) {
                alert(err);
            }
        });
    }
   
    $.fn.resetEvent = function()
    {
        c.bind("keydown", keydown_process);
       
        c.bind("keyup", keyup_process);
       
        c.bind("blur", blur_process);
       
        d.bind("focus", focus_div);
       
        d.bind("mouseout", mouseout_div);
    }
   
    $.fn.setPosition = function()
    {
        var p = c.position();
        d.css({ "left": p.left, "top": p.top + c.height() + options.top });
    }
   
    $.fn.setScroll = function(h, o)
    {
        var offset = o.offset();
        if(offset.top > h){
            $(this).scrollTop(offset.top - h);
        }else{
            if(offset.top < 25){  //项的高度 对应样式表 td height:25px
                $(this).scrollTop(0);
            }
        }
    }
   
})(jQuery);
    #autoComplete_Group {
        border: 1px solid #817F82;
        position: absolute;
        overflow-y:auto;
        overflow-x:hidden;
        display:none;
    }
   
    #autoComplete_Group table {
        background: none repeat scroll 0 0 #FFFFFF;
        cursor: default;
        width: 100%;
    }
   
    #autoComplete_Group td {
        color: #000000;
        font: 14px/25px arial;
        height: 25px;
        padding: 0 8px;
    }
   
    #autoComplete_Group .nowRow {
        background-color:#EBEBEB;
    }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>jQuery 仿百度提示框</title>

    <script src="/js/jquery.js" type="text/javascript"></script>

    <link href="/js/autoComplete/autoComplete.css" rel="stylesheet" type="text/css" />

    <script src="/js/autoComplete/jquery.autoComplete.js" type="text/javascript"></script>

    <script type="text/javascript" language="javascript">
        $(document).ready(function(){
            $("#txt_company").autoComplete({ url:"ajax.aspx" });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
        <input id="txt_company" type="text" style="width:468px;" />
    </form>
</body>
</html>
    protected void Page_Load(object sender, EventArgs e)
    {
        string keyword = Request["txt_company"];
        string jsonArray = "[{"text":"天天有限公司","value":"2"},{"text":"明明有限公司","value":"4"},{"text":"黄黄有限公司","value":"4"}]";
        Response.Write(jsonArray);
        Response.End();
    }

后台只需要返回json格式的 text 和 value值 就可以了。

$.fn.resetEvent();  这个方法是重新绑定事件, 比如从一个容器 append到另一个容器 事件丢失了, append完可以使用该方法重新绑定事件。下面还有一些参数。

 

 代码如下 复制代码
        var defaults = {
            width: c.width(), //提示框的宽度 默认跟文本框一样
            maxheight: 150, //提示框的最大高度
            top: 6,  //与文本框的上下距离
            url: "",   //ajax 请求地址
            type: "post", //ajax 请求类型
            async: false,  //是否异步请求
            autoLength: 0,  //文本长度大于0 就请求服务器
            getValue: function(value){ }, //当回车 或 鼠标点击选中值的时候执行
            clearValue: function(){ }, //当重新请求时清空Value值
            getText: function(text){ } //当回车 或 鼠标点击选中值的时候执行
        };

好了。  唯一一个缺点就是 鼠标点击项的时候 不松开会隐藏掉下拉框,具体看我代码,有能力的可以改下

 

时间: 2024-10-27 13:23:30

jQuery仿百度搜索框智能提示效果代码的相关文章

jquery php 百度搜索框智能提示效果

先来看看效果 代码如下 index.html文件,保保存成index.htm  代码如下 复制代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"&g

显示-仿百度搜索框智能提示功能,在搜索关键字变色的功能里,输入数字会有问题

问题描述 仿百度搜索框智能提示功能,在搜索关键字变色的功能里,输入数字会有问题 仿百度搜索框智能提示功能,在搜索关键字变色的功能里,输入数字会有问题,如果数组中含有(1)数字,当文本框第一次按下1这个数字来搜索时,会出现问题,例如:数组中有2123,在文本框输入1,结果会显示2123[[[1]]]:如果数组中有两条或以上含有(1)数字的,则搜索结果第一行会这样显示,之后的都正常显示.输入","时也有问题,会出现一个标签字符串,原因是因为都","来分割的. 贴上我的搜

jQuery 插件仿百度搜索框智能提示(带Value值)_jquery

因公司需要做一个仿百度搜索框,并且带Value值的, 网上找了下只有Text, 都没带Value的 所以做了个. 直接贴代码. 复制代码 代码如下: (function($) { var timeid; var lastValue; var options; var c; var d; var t; $.fn.autoComplete = function(config) { c = $(this); var defaults = { width: c.width(), //提示框的宽度 默认跟

标签-仿百度搜索框只能提示上下键移动的功能效果 js+jquery

问题描述 仿百度搜索框只能提示上下键移动的功能效果 js+jquery 搜索结果不能上下移动,只能按一下,按第二下的时候结果只剩下一个了,currentSelIndex总是为0 ,currentSelIndex是记录 标签id的变量. 首先,我输入一个字符,匹配到的结果会在文本框下方显示出来.因为代码都是写在搜索框的onkeyup ()事件中的,每按一下键盘都会触发该事件,当我第一次按(下)键的时候,相应的会把选中的文本赋 给搜索框,所以按第二次的时候又会重新触发该事件,搜索条件变成了第一次按(

百度搜索框智能提示案例jsonp_javascript技巧

先给大家展示下效果图: 下面一段代码给大家分享了百度搜索框智能提示案例jsonp的知识,具体代码如下所示: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>百度下拉_sug-jquery</title> <script src="jquery-1.11.3.js"><

利用jsonp跨域调用百度js实现搜索框智能提示_javascript技巧

项目中常常用到搜索,特别是导航类的网站.自己做关键字搜索不太现实,直接调用百度的是最好的选择. 使用jquery.ajax的jsonp方法可以异域调用到百度的js并拿到返回值,当然$.getScript也可以实现跨域调用js.  ok,了解了jsonp的原理和应用后,我们看看百度的智能提示是如何做的 在chrome的调试窗口下看看百度搜索发出的请求.当输入关键字"a",请求如图:  用firebug看下请求的参数,如图: 请求方式:get请求请求参数:wd明显是要搜索的关键字:cb是请

仿百度搜索框的下拉框拉动效果

问题描述 如何实现仿百度搜索框的下拉框拉动效果 解决方案 解决方案二:这个例子:http://blog.csdn.net/ChengKing/archive/2006/08/22/1106456.aspx

jquery+php实现搜索框自动提示_jquery

今天突然想给本站做个搜索页面,这样用户可以通过搜索来找到自己喜欢的内容,也避免了在海量信息中手动查找资源的麻烦,我的目标和百度首页的效果类似,当用户输入要搜索的文字时,我们在下方给出相关的十条信息,如果用户要找的就是这十条信息内的某一条,那么简单,直接点击就可在新页面中打开页面,主要就是想更人性化一点,让用户使用起来更方便. 先看一下效果图吧,这样更有动力,要不然大家还不知道我在讲什么,到底要达到什么样的效果! jquery+php实现搜索框自动提示 下面先主要讲解原理: 在search.htm

Servlet+Ajax实现智能搜索框智能提示功能

利用无刷新技术智能变换搜索框的提示,同百度搜索 效果图 其基本原理: 1.给搜索框编写js绑定事件onkeyup(键盘输入时).onfocus(当鼠标点击搜索框外的时候清空提示) 2.首先获得用户输入.之后将获得的数据传给服务器,服务器将数据传给后台,后台获取服务器传来的数据进行处理,得到关联数据,向前端返回json格式,前端通过回调函数,将返回来的json解析成文本,将文本传输到搜索框下方的展示窗 如下为支持json的jar包 search.jsp <%@ page language="