首页 > 其他 > 详细

精准定位

时间:2016-02-25 11:39:02      阅读:124      评论:0      收藏:0      [点我收藏+]
function LookMatch(){
     
}
LookMatch.init = function(seach,els){
 var that = new LookMatch();
     that._setElement(seach,els)
}
LookMatch.prototype._setElement = function(seach,ul){
    this.seachEl = seach;
    this.ul = ul;
    this.backEls = this.ul.clone(true);
    var that = this;
     this.ul.on(‘click‘,‘li‘,function(){
         
         that.seachEl.val($(this).text());  
         that.ul.hide();
         that.restore();
    });
    this.seachEl.on(‘focus‘,function(){
        console.log(‘ss‘);
       that.ul.show(); 
    });
    this.seachEl.on(‘keyup‘,function(){
         var q = $(this).val();
         if (!q) {
            that.restore();
            return;
         }
         var arr = [];
         that.ul.find(‘li‘).each(function (i, e) {
             var text = $(this).text();
             var indexof = text.indexOf(q);
             if (indexof != -1) {
                 arr.push(e);
             }
         });
         if (!arr.length) {
             return;
         }
         $.each(arr.reverse(), function (i, e) {
            that.ul.prepend(e);
         });
    })
}
LookMatch.prototype.restore=function(){
    this.ul.empty().html(this.backEls.html());
}
// 搜索框,列表
LookMatch.init($(‘#seachinput‘),$(‘#uu‘));

*

精准定位

原文:http://www.cnblogs.com/change-oneself/p/5216190.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!