ajax之搜索提示
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-25
bsp; break; case ''d'': element.style.fontSize="12px"; element.style.fontFamily="arial,sans-serif"; element.style.backgroundColor="white"; element.style.color="black"; element.style.width=$(''keyword'').clientWidth-2+"px"; element.style.height="20px"; element.style.padding="1px 0px 0px 2px"; if(element.displaySpan)element.displaySpan.style.color="green" break; case ''t'': element.style.width="80%"; if(window.navigator.userAgent.toLowerCase().indexOf("firefox")!=-1)element.style.cssFloat="left"; else element.style.styleFloat="left"; element.style.whiteSpace="nowrap"; element.style.overflow="hidden"; element.style.textOverflow="ellipsis"; element.style.fontSize="12px"; element.style.textAlign="left"; break; case ''h'': element.style.width="20%"; if(window.navigator.userAgent.toLowerCase().indexOf("firefox")!=-1)element.style.cssFloat="right"; else element.style.styleFloat="right"; element.style.textAlign="right"; element.style.color="green"; break; } } function focusitem(index) { if($(''item''+lastindex)!=null)setstyle($(''item''+lastindex),''d''); if($(''item''+index)!=null) { setstyle($(''item''+index), ''m''); lastindex=index; } else $("keyword").focus(); } function searchclick(index) { $("keyword").value=$(''title''+index).innerHTML; flag=true; } function searchkeydown(e) { if($(''rlist'').innerHTML=='''')return; var keycode=(window.navigator.appName=="Microsoft Internet Explorer")?event.keyCode:e.which; //down if(keycode==40) { if(lastindex==-1||lastindex==listlength-1) { focusitem(0); searchclick(0); } else{ focusitem(lastindex+1); searchclick(lastindex+1); } } if(keycode==38) { if(lastindex==-1) { focusitem(0); searchclick(0); } else{ focusitem(lastindex-1); searchclick(lastindex-1); } } if(keycode==13) { focusitem(lastindex); $("keyword").value=$(''title''+lastindex).innerText; } if(keycode==46||keycode==8){flag=false;ajaxsearch($F(''keyword'').substring(0,$F(''keyword'').length-1).Trim());} } function showresult(xmlhttp) { var result=unescape(xmlhttp.responseText); if(result!=''''){ var resultstring=new StringBuffer(); var title=result.split('' |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 一个令人深思的小注入【警惕】下一篇: md5结合cryp=无敌密码
关于ajax之搜索提示的所有评论