Home Web Front-end JS Tutorial Text box text auto-complete effect example sharing_jquery

Text box text auto-complete effect example sharing_jquery

May 16, 2016 pm 05:03 PM
autocomplete

Copy code The code is as follows:

/*文本自动补全 zhouxiang*/

(function ($) {
$.Completion = function (setting) {
var opts = $.extend({}, $.Completion.DefaultSetting, setting);
//width
var Completion_Width = null;
var Completion_Height = null;
var Completion_Height = null;
var Completion_Data_Url = null;
//Object
var Completion_Obj = null;
var Completion_Obj_Show = null;
var Completion_Obj_Show = null;
var Completion_Obj_MarginLeft = null;
var Completion_Obj_MarginLeft letion_Obj_MarginTop = null;
//Object height
var Completion_Obj_Height = null;
//Category
var Completion_Count = null;
//
var Completion_Type_obj = null;
// Content
var Completion_Value = null;
                                                                                        use using using use using use using using using       out out out out out out out out out Out Out of ’ into ’’ ’     ’ ‐ ‐ ‐ ‐ ‐ down through-set to ​ to var Completion_N = 0; 🎜 >         // Enter callback
        var Completion_ClickCall = null;
                                                                                                                 // Enter callback 🎜> //Binding event
Completion_Obj_AddEvent();
}
        //初始化
        function Init() {
            Completion_Obj_Show = opts.Completion_Obj_Show;
            //获取对象
            Completion_Obj = opts.Completion_Obj;
            //获取对象宽度
            Completion_Width = Completion_Obj.width();
            //获取层显示高度
            Completion_Height = opts.Completion_Height;
            //获取访问数据库URL
            Completion_Data_Url = opts.Completion_Data_Url;
            //每次查询多少条记录
            Completion_Count = opts.Completion_Count;
            //获取对象高度
            Completion_Obj_Height = Completion_Obj.height();
            //获取左边距
            Completion_Obj_MarginLeft = Completion_Obj.offset().left;
            //获取上边距
            Completion_Obj_MarginTop = parseInt(Completion_Obj.offset().top) + parseInt(Completion_Obj_Height);
            Completion_Type_obj = opts.Completion_Type_obj;
            Completion_Bool = opts.Completion_Bool;
            Completion_ClickCall = opts.Completion_ClickCall;
        }
        //给对象添加事件
        function Completion_Obj_AddEvent() {
            Completion_Obj.keyup(function (event) {
                switch (event.keyCode) {
                    case 38:
                        break;
                    case 40:
                        break;
                    case 13:
                        Completion_ClickCall();
                        break;
                    default:
                        //按键事件 延迟操作

                        Cimpletion_Bind();
                        break;
                }

            });
            Completion_Obj.keydown(function (event) {
                switch (event.keyCode) {
                    case 13:
                        break;
                    case 38:
                        if (Completion_N == 0) {
                            Completion_N = (Completion_Obj_Show.find("li").length - 1);
                        } else if (Completion_N != 0) {
                            Completion_N = Completion_N - 1;
                        }
                        //alert(Completion_N);
                        Completion_Obj_Show.find("li").find("a").removeClass("Completion-guess-list-hover");
                        Completion_Obj_Show.find("li").eq(Completion_N).find("a").addClass("Completion-guess-list-hover");
                        Completion_Obj.val(Completion_Obj_Show.find("li").eq(Completion_N).find("ul").text());


                        break;
                    case 40:
                        if (Completion_N + 1 < Completion_Obj_Show.find("li").length) {
Completion_N = Completion_N + 1;
} else if (Completion_N + 1 == Completion_Obj_Show.find("li").length) {
Completion_N = 0;
}
Completion_Obj_Show.find("li").find("a").removeClass("Completion-guess-list-hover");
Completion_Obj.val(Completion_Obj_Show.find("li").eq(Completion_N).find("ul").text());
Completion_Obj_Show.find("li").eq(Completion_N).find("a").addClass("Completion-guess-list-hover");

break;
default:
break;

                                                                                                                                                            🎜>            if (Completion_Bool) {
Completion_Type = Completion_Type_obj.val();
}
Completion_Value = Completion_Obj.val();
Completion_Value = Completion_Value.replace(" ", "");
                                                                                                                                            use   using using use using using                                                     (Completion_Value);
                                                                                                                                                                {
Completion_Obj_Show.hide();
}
}
// Verify
Function Completing_verification (obj) {
if (obj == "" "|| Obj == NULL || Obj == Undefined) {
RETURN FALSE ;
                                                                                 url: Completion_Data_Url,
data: { CompletionValue: Completion_Value, CompletionCount: Completion_Count, CompletionType: Completion_Type },
type: "post",
dataType: "json",
success: function (obj) {
                                                                                                                                                                                                                                                        // Construct HTML
                       Completion_Add_Html (obj);
                                                                                     letion_Obj.val(obj.find("ul").text ());
Completion_Obj_Show.hide();
}
//构造内容
function Completion_Add_Html(obj) {
var data = obj.Completion_Data;
//执行验证
Completion_Verification(data);
var ComPletion_Li = "";
if (data != null && data != undefined) {
for (var i = 0; i < data.length; i++) {
//执行验证是否为空
var dr = data[i];
Completion_Verification(dr);
var ComPletionName = dr.ComPletion_Name;

                    ComPletionName = ComPletionName.replace(Completion_Value.toUpperCase(), "" Completion_Value.toUpperCase() "");
                    ComPletion_Li = "

  • 约" dr.ComPletion_Count "条记录
      " ComPletionName "
  • ";
                    }
                    if (ComPletion_Li != "") {
                        var Completion_Html = "
      " ComPletion_Li "
    ";
                        Completion_Obj_Html(Completion_Html);
                    } else {
                        Completion_Obj_Show.hide();
                    }
                }
            }
            //mouse
            function MouseHover(obj) {
                Completion_Obj_Show.find("li").mouseover(function () {
                    Completion_Obj_Show.find("li").find("a").removeClass("Completion-guess-list-hover");
                    Completion_Obj.val($(this).find("ul").text());
                    Completion_N = Completion_Obj_Show.find("li").index(this);
                });
            }
            //绑定到控件
            function Completion_Obj_Html(html) {
                Completion_Obj_Show.show();
                Completion_Obj_Show.html("")
                Completion_Obj_Show.css({ "width": Completion_Width 6, "height": Completion_Height, "border-width": "1px", "border-color": "#CCC", "border-top-width": "0px", "border-style": "solid", "position": "relative", "z-index": "100000" });
                Completion_Obj_Show.attr("class", "Completion-guess-list");
                Completion_Obj_Show.html(html);
                Completion_N = -1;
                Completion_Obj_Show.find("li").unbind("click").click(function () {
                    Completion_Selected($(this));
                });
                MouseHover($(this));
                Completion_Obj_Show.click(function (e) {
                    e.stopPropagation();
                })
                Completion_Obj.click(function (e) {
                    Cimpletion_Bind();
                    e.stopPropagation();
                });
                $(document).click(function () {
                    Completion_Obj_Show.hide();
                });
            }
            //加载
            Completion_Loading();
        };
        //默认配置
        $.Completion.DefaultSetting = {
            Completion_Height: null,
            Completion_Data_Url: null,
            Completion_Obj: null,
            Completion_Obj_Show: null,
            Completion_Bool: false,
            Completion_Count: 10,
            Completion_Type_obj: null,
            Completion_ClickCall: null
        };

    })(jQuery);

    复制代码 代码如下:

    body
    {
          margin: 0;
        padding: 0;
        }
    .Completion-guess-list ul, li
    {
        margin: 0;
        padding: 0;
        list-style:none;
    }
    .Completion-guess-list
    {
        overflow: auto;
        font-size: 12px;
        line-height: 180%;
        background: #fff;
    }
    .Completion-guess-list a
    {
        color: #555;
        text-decoration: none;
        display: block;
        padding: 1px 6px;
        overflow: hidden;
        white-space: nowrap;
        font-family:Verdana,arial;
    }
    .Completion-guess-list a .c-total{float:right;color:green;}
    .Completion-guess-list a:hover,.Completion-guess-list a.Completion-guess-list-hover
    {
        background: #3399ff;
        color: #fff;
    }
    .Completion-guess-list a:hover span.c-total,.Completion-guess-list a.Completion-guess-list-hover span.c-total{color:#fff;}
    .Completion-guess-list .c-hover{font-weight:700;}

    复制代码 代码如下:

    $.Completion({ Completion_Obj: $("#Input_Html"), Completion_Data_Url: "/CompletionHandler.ashx", Completion_Height: "auto", Completion_Obj_Show: $("#show"), Completion_Bool: true, Completion_Type_obj: $("#Type"), Completion_ClickCall: function () { alert(1); }, Completion_Length: 0 });
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    PHP development: How to implement search keyword prompts and automatic completion functions PHP development: How to implement search keyword prompts and automatic completion functions Sep 21, 2023 pm 01:01 PM

    PHP development: Implementing search keyword prompts and automatic completion functions In today's Internet era, search engines have become one of the important channels for people to obtain information. In website development, the importance of search function is self-evident. In order to improve user experience and search results, implementing search keyword prompts and automatic completion functions is a very valuable and necessary development task. This article will introduce how to implement search keyword prompts and automatic completion functions in PHP development, and provide specific code examples. Search keyword prompts refer to the

    How to use Vue and Element-UI to implement auto-completion function How to use Vue and Element-UI to implement auto-completion function Jul 21, 2023 pm 02:53 PM

    Overview of how to use Vue and Element-UI to implement the auto-completion function: Auto-completion is a very practical function that can provide relevant completion options based on user input and improve user experience. In the Vue framework, combined with the Element-UI component library, it becomes very simple to implement the automatic completion function. This article will introduce how to use Vue and Element-UI to implement this function, and give corresponding code examples. Step 1: Create a Vue project and introduce the Element-UI library. First,

    Recommend several powerful C language editors Recommend several powerful C language editors Feb 19, 2024 pm 01:40 PM

    In the field of computer programming, C language has always been favored by developers for its simplicity and efficiency. To improve efficiency in C language programming, it is very important to choose a good C language editor. This article will introduce several powerful C language editors to help developers better program in C language. VisualStudioCodeVisualStudioCode (VSCode for short) is a free, open source, cross-platform editor developed by Microsoft. It supports multiple languages

    Annotation prompts and auto-completion functions in Eclipse IDE Annotation prompts and auto-completion functions in Eclipse IDE May 06, 2024 pm 10:36 PM

    Annotation hints and auto-completion in Eclipse IDE simplify Java development: Tip: Hover over an annotation to view its type, parameters, and documentation. Autocomplete: Automatically suggests matches as you type annotation names, including standard and custom annotations. Practical cases demonstrate the application of prompts and auto-complete functions. These features improve coding efficiency and code quality.

    How to set up eclipse auto-completion How to set up eclipse auto-completion Jan 25, 2024 pm 01:34 PM

    Steps to set up eclipse auto-completion: 1. Turn on auto-completion; 2. Set up completion suggestions; 3. Customize auto-completion suggestions; 4. Set up auto-completion shortcut keys; 5. Other personalized settings; 6. Save and close. Detailed introduction: 1. Turn on auto-completion, select Window -> Preferences on the Eclipse menu bar, in the pop-up dialog box, expand the Java option, select Editor -> Content Assist, etc. in the tab on the right.

    MySQL and Python: How to implement data query function MySQL and Python: How to implement data query function Jul 31, 2023 pm 01:34 PM

    MySQL and Python: How to implement data query function In recent years, the rapid growth of data has made data query and analysis an important task in various fields. As a widely used relational database management system, MySQL, combined with Python, a powerful programming language, can provide fast and flexible data query functions. This article will introduce how to use MySQL and Python to implement data query functions and provide code examples. First, we need to install and configure MySQL and Python

    How to use JavaScript to realize the automatic completion prompt function of the input box content of the form? How to use JavaScript to realize the automatic completion prompt function of the input box content of the form? Oct 24, 2023 pm 12:19 PM

    How to use JavaScript to realize the automatic completion prompt function of the input box content of the form? With the development of the Internet, the auto-complete prompt function of form input boxes is becoming more and more common. When users enter content, possible completion options will be provided based on existing data to facilitate users to quickly select or enter the correct information. This article will introduce how to use JavaScript to implement the automatic completion prompt function of the input box content of the form, and provide specific code examples. Step One: Create the HTML Structure First, we

    How to implement automatic completion function of search box in PHP How to implement automatic completion function of search box in PHP Mar 07, 2024 am 08:00 AM

    Search box autocomplete is a common web feature that improves the user experience and simplifies the search process. The search box auto-completion function in PHP can be implemented through Ajax asynchronous requests. The specific implementation method will be introduced below, including front-end code and back-end code examples. Front-end code example:

    See all articles