메일박스 연상 기능 작성



    
        
        
        
    
    
        <input type="text" list="input_list" name="text" placeholder=" "/>
        <datalist id="input_list"/>
    
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"/>
    <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>

</code></pre> 
  <p> </p> 
 </div> 
</div>
                            </div>
                        </div>

좋은 웹페이지 즐겨찾기