文本框输入邮箱自动联想补全

Posted 熊哥club

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本框输入邮箱自动联想补全相关的知识,希望对你有一定的参考价值。

文本框输入邮箱自动联想补全

 <!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta http-equiv="content-type" content="text/html;charset=utf-8">
        <title></title>
    </head>
    <body>
        <input type="text" list="input_list" name="text" placeholder="请输入邮箱"/>
        <datalist id="input_list"></datalist>
    </body>
    <script type="text/javascript"  src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
    <script type="text/javascript">
        function inputList(input,list){
            var mailBox = [
                "@qq.com",
                "@sina.com",
                "@163.com",
                "@126.com",
                "@yahoo.com.cn",
                "@gmail.com",
                "@sohu.com"
            ];
            input.bind(input propertychange, function() {
                var key = input.val();
                if(key.indexOf("@") != -1){
                    key = key.slice(0,key.indexOf("@"));
                }
                var mailBoxLen = mailBox.length;
                var html = "";
                for(var i=0; i<mailBoxLen; i++){
                    html += <option value="+ key + mailBox[i] +"></option>;
                }
                list.html(html);
            });
        }
        inputList($("input"),$("#input_list"));
    </script>
</html>

 

以上是关于文本框输入邮箱自动联想补全的主要内容,如果未能解决你的问题,请参考以下文章

MyEclipseeclipse代码自动补全(联想输入)

vue中实现中,自动补全功能

bootstrap实践录:输入框自动补全-autocomplete篇

bootstrap实践录:输入框自动补全-autocomplete篇

bootstrap实践录:输入框自动补全-autocomplete篇

jquery的输入框自动补全功能+ajax