jquery组件|一个基于jquery的简单下拉框实现

项目中使用的是easyui的组件,后来发现在编辑页面中,如果combobox组件数量过多,会导致页面超级慢,还有可能造成浏览器崩溃,经过研究easyui的源码发现,combobox是由多个html对象组成的,而且每个combobox有一个单独的下拉面板,如果页面上有100个下拉框组件,每个组件中有500个元素,这样一个页面中隐藏的下拉面板中就会有50000个下拉元素对象,怪不得页面那么慢呢,前一段有时间就自己写了一个简单的下拉框,为与combobox区别,取名叫scombobox,实现的原理是页面中所有下拉框共用一个下拉面板,面板中的内容根据内容自动筛选,并能根据输入的拼音进行模糊匹配并用着重色标识出来,而控件则仍使用,只不过给它加上了下拉框的样式,这样感觉就简单了好多,最后效果也不错,附件中是一个完整的演示例子。
【jquery组件|一个基于jquery的简单下拉框实现】
亲测在IE6、IE8、IE9、Chrome23、Firefox17、Oprea12下可用


jQuery.basePath=function(filename){ var eles = document.getElementsByTagName('script'); for(var i=0; i=0){ var ary = [key]; ary.position=pos; return ary; } return $.pinyin?$.pinyin.filter(row[this.textField],key):false; } }; $.fn.scombobox.method={ init:function(target,options){ return init(target,options); }, options:function(target){ return target.data('options'); }, getValue:function(target){ return $(target[0]).data('scombo-val').val(); }, getValues:function(target){ return $(target[0]).data('scombo-val').val().split($(target[0]).data('options').separator); }, getText:function(target){ return target.val(); }, setValue:function(target,val){ validate(target,true); var valInput = $(target[0]).data('scombo-val').val(val); changeEvt($(target[0]),valInput); return target; }, setValues:function(target,val){ validate(target,true); var valInput = $(target[0]).data('scombo-val').val(val.constructor==Array?val.join($(target[0]).data('options').separator):val); changeEvt($(target[0]),valInput); return target; }, setText:function(target,text){ validate(target,true); return target.val(text); }, valuebox:function(target){ return target.data('scombo-val'); }, remove:function(target){ target.data('scombo-val').remove(); return target.remove(); }, showPanel:function(target,event){//触发面板显示的事件 return showPanel(target,event); }, hidePanel:function(target){ validate(target,true); var th = $(target),div=th.data('scombo-panel'); div.hide(); changeEvt(th); return th; }, disable:function(target){ target.data('options').disabled=true; $(document).trigger('click',[true]); return target.attr('disabled',true); }, enable:function(target){ target.data('options').disabled=false; validate(target,true); return target.attr('disabled',false); }, editable:function(target,editable){ target.data('options').editable=editable; validate(target,true); return target; } }; function init(target,options){ if(!$.pinyin){ $.getScript($.basePath('jquery.easyui.min.js')+'pinyin.js'); } var opt = $.extend({},$.fn.scombobox.defaults,options); target.attr('autocomplete', 'off').data('options',opt).unbind('.scombo'); if(!$.fn.scombobox.defaults._panel){//如果还没有创建面板,则新建面板 var div =$.fn.scombobox.defaults._panel= $('').appendTo('body').bind('mousedown',function(){return false; }); div.hide(); } target.bind('dataloaded.scombo',dataloadedEvent); validate(target,true); target.data('scombo-panel',$.fn.scombobox.defaults._panel); //将下拉面板绑定到输入框上 target.each(function(){ var th=$(this),opt=$.extend({},$.fn.scombobox.defaults,parseOption(this),options); th.data('options',opt); var valInput = $('').attr('name',th.attr('name')).insertBefore(this); if(th.attr('tagName').toLowerCase()=='select'){//如果是select,需要将Select隐藏,显示input th = $('').insertBefore(this).bind('dataloaded.scombo',dataloadedEvent).data('options',opt).data('scombo-panel',$.fn.scombobox.defaults._panel); var domAttrs = {type:true,outerHTML:true,innerHTML:true,outerText:true,innerText:true,tagName:true,textContent:true,localName:true,nodeName:true,baseURI:true,namespaceURI:true}; for(var p in this){ try{if(this[p]&&!domAttrs[p]&&typeof(this[p])=='string')th.attr(p,this[p]); }catch(e){; } } th.attr('style',$(this).attr('style')); $(this).remove(); target.push(th[0]); } //设定隐藏域的值 valInput.val(getVal(opt.value,th.val())); th.addClass('scombo-box').attr('readonly',opt.disabled).attr('scombo-name',th.attr('name')).removeAttr('name').val('') .data('scombo-val',valInput).data('old-val',valInput.val()).bind('click.scombo focus.scombo paste.scombo keyup.scombo type.scombo',function(event){ $.fn.scombobox.method.showPanel(this,event); return $.event.fix(event).type=='paste'; //只有粘贴事件冒泡,其它事件不冒泡 }); if(opt.width&&opt.width!='auto'){//处理宽度 var wid=getVal(opt.width,th.outerWidth()); th.width(wid); if(th.outerWidth()!=wid){//防止不同盒子模型解析的宽度不一致 th.width(wid-(th.outerWidth()-wid)).height(18); } } }); if(opt.url){//最后再从服务器加载内容,以免取不到VALUE隐藏字段 $.post(opt.url,opt.params,function(data){ try{ var ary = $.parseJSON(data); } catch(e){; } opt.data = https://www.it610.com/article/ary||data; target.trigger('dataloaded'); //触发数据加载成功事件 }); } else{//触发数据加载成功事件 target.trigger('dataloaded'); } return target; } function showPanel(target,event){ var th = $(target),div=th.data('scombo-panel'),opt=th.data('options'); if(!opt||opt.disabled)return th; //禁用时直接返回,不显示下拉面板 var pos = th.offset(); pos.top+=th.outerHeight()+2; pos.width = getVal(opt.panelWidth,th.outerWidth()-1); pos.height = getVal(opt.panelHeight,''); div.css(pos); //定位 if(event){ var evt = $.event.fix(event),kc=evt.keyCode; if(evt.type!='click'&&evt.type!='focus'){ if(kc==13){//回车 if((item=$('.hover',div)).length>0){ th.val(item.text()); th.data('scombo-val').val(item.attr('value')); th.removeData('keypress'); $(document).trigger('click',[true]); return; } } else if(kc==38){//向上 if($('.hover',div).length==0){ var item=$('.scombo-item:last',div).addClass('hover'); makeCenter(div,$('.hover:first',div)); } else{ var item = $('.hover',div); if(item.prev().length>0){ makeCenter(div,$('.hover:first',div)); item.removeClass('hover').prev().addClass('hover'); } } return; } else if(kc==40){//向下 if($('.hover',div).length==0){ $('.scombo-item:first',div).addClass('hover'); makeCenter(div,$('.hover:first',div)); } else{ var item = $('.hover',div); if(item.next().length>0){ makeCenter(div,$('.hover:first',div)); item.removeClass('hover').next().addClass('hover'); } } return; }//非控制按键和功能按键8==BACKSPACE,32=SPACE,48-57=0-9,65-90=A-Z,96-111=小键盘,186-222=大键盘上的特殊字符 else if(kc==8||kc==32||(kc>=48&&kc<=111)||kc>=186){ th.data('keypress',1); } } } var key = event&&(evt.type=='keyup'||evt.type=='type')?th.val():null; //非键盘事件触发时,展开所有选项 if((div.data('scombo-box')&&div.data('scombo-box')[0]!=th[0])||div.data('scombo-box',th).css('display')=='none'){ if(div.data('scombo-box')&&div.data('scombo-box')[0]!=th[0]){ $(document).trigger('click',[true]); div.data('scombo-box',th); } $(document).bind('mousedown.scombo',function (event,hidePanel){//页面中其他位置的点击事件,点击后隐藏下拉面板 var obj = $($.event.fix(event).target); if(!$.fn.scombobox.defaults._panel){ return; } var th = $.fn.scombobox.defaults._panel.data('scombo-box'); if(!hidePanel&&th[0]==obj[0]){ return; } var opt = th.data('options'); if(th.data('keypress')){//如果用户使用键盘输入了,则进行显示值处理 if(opt.editable){//可写时,将写入的内容存到VALUE字段中 th.data('scombo-val').val(th.val()); } else{ var text = '',vals=th.data('scombo-val').val().split(opt.separator); for(var i=0; i=0){ text+=opt.separator+opt.data[i][opt.textField]; vals.splice(pos,1); } } th.val(text.substr(opt.separator.length)); } } changeEvt(th); $.fn.scombobox.defaults._panel.removeData('last-key').removeData('keypress').hide(); $(document).unbind('mousedown.scombo'); //解绑本事件 }); fillData(div,opt,null); //第一次显示下拉选项时,展开所有选项 } if(div.data('last-key')!=key){ div.data('last-key',key); fillData(div,opt,key); } return th; } function changeEvt(th,valInput){ if(!th||th.length==0)return; valInput=valInput||th.data('scombo-val'); if(valInput.val()!=valInput.data('old-val')){ th.trigger('change',[valInput.val(),valInput.data('old-val')]); valInput.data('old-val',valInput.val()); } } function parseOption(target){ var th = $(target),opt={}; for(var p in $.fn.scombobox.defaults){ var val = th.attr(p)+'',dval=$.fn.scombobox.defaults[p]; if(th.attr(p)){ opt[p] = val; if(typeof(dval)=='boolean')opt[p]=val=='true'; else if(typeof(dval)!='string')try{opt[p]=eval(val); }catch(e){; } } } if(!opt.data&&th.attr('tagName')=='SELECT'){ var ary = opt.data = https://www.it610.com/article/[]; $('option',th).each(function(){ ary.push({id:$(this).val(),text:$(this).text()}); }); } return opt; } function dataloadedEvent(){ var opt=$(this).data('options'),val=$(this).data('scombo-val').val(); if(typeof(opt.data)=='string'){//如果data为string类型,则转化成数组对象格式 var tmp = opt.data.replace(/([^:]*):([^,]*),?/g,function($0,$1,$2){ return ',{"'+opt.valueField+'":"'+$1.replace(/"/g,'" ')+'","'+opt.textField+'":"'+$2.replace(/"/g,'" ')+'"}'; }); opt.data=https://www.it610.com/article/$.parseJSON('['+tmp.replace(/^,+|,+$/g,'')+']'); } for(var i=0; i0){//对匹配出的字串进行着色表示 for(var j=0; jspan',div).text()){ $('.scombo-item:first',div).addClass('hover'); } if(val=div.data('scombo-box').data('scombo-val').val()){//如果值不为空,则选中对应的选项 if(opt.multiple){//多选 $.each(val.split(opt.separator),function(){ $('.scombo-item[value="'+this+'"]:first').addClass('selected'); }); } else{//单选 $('.scombo-item[value="'+val+'"]:first').addClass('selected'); } makeCenter(div,$('.selected:first',div)); } $('.scombo-item',div).bind('mousedown.sombo',function(){//增加选项单击事件 var target = $(this).parent().data('scombo-box'),th=$(this),opt=target.data('options'); if(opt.multiple){//多选 th.toggleClass('selected'); var ids=[],texts=[]; $('.selected',div).each(function(){ ids.push($(this).attr('value')); texts.push($(this).text()); }); target.data('scombo-val').val(ids.join(opt.separator)); target.removeData('keypress').val(texts.join(opt.separator)||''); } else{//单选 target.data('scombo-val').val(th.attr('value')||''); target.val(th.text()||''); target.removeData('keypress'); //去掉keypress属性,在调用$(document).click()时,不再将文本值赋到VALUE字段中去 $(document).trigger('mousedown',[true]); } validate(target,true); return false; }).mouseover(function(){ $('.hover',div).removeClass('hover'); $(this).addClass('hover'); }).mouseout(function(){ $(this).removeClass('hover'); }); } function tostr(num,len){ var str = '00000000000000000000'+num; return str.substr(str.length-len); } })(jQuery);

    推荐阅读