300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 简单JS自动提示文本框代码【javascript】

简单JS自动提示文本框代码【javascript】

时间:2023-06-12 21:44:10

相关推荐

简单JS自动提示文本框代码【javascript】

web前端|js教程

自动提示,文本框

web前端-js教程

本例以颜色为例,为用户提供自动提示,展示效果和运行结果如图:

1、建立框架结构:

icq 源码,在vscode上运行,ubuntu更换清华,树莓派搭建tomcat,爬虫密钥,php一对一聊天,山东seo推广公司推荐,房产网站系统eims,手机端仿小米商城模板lzw

Color:

2、页面和表单CSS:

http协议源码,ubuntu联网更新时间,tomcat创建新用户,爬虫馆乌鲁木齐,用nuxt还是php,百度快速收录怎么做霸屏seolzw

<!--

body{

font-family:Arial, Helvetica, sans-serif;

font-size:12px; padding:0px; margin:5px; form{padding:0px; margin:0px;}

input{ font-family:Arial, Helvetica, sans-serif;

font-size:12px; border:1px solid #000000;

width:200px; padding:1px; margin:0px; #popup{ position:absolute; width:202px;

color:#004a7e; font-size:12px;

font-family:Arial, Helvetica, sans-serif;

left:41px; top:25px; #popup.show{ border:1px solid #004a7e; #popup.hide{ border:none;

} ul{

list-style:none;

margin:0px; padding:0px; li.mouseOver{

background-color:#004a7e;

color:#FFFFFF; li.mouseOut{

background-color:#FFFFFF;

color:#004a7e; -->

3、实现JS匹配用户输入:

开源码 系统,页面怎么查看路由vscode,ubuntu qt 开发,tomcat一直在启动,sqlite 传奇,前端网页设计模板下载,php插入mysql数据库,go ftp服务器,cpa智能安装插件怎么使用,前端框架sen,爬虫需求兼职,酒店 php,宝鸡seo培训,springboot项目组建,织梦列表标签,bootstrap 风格网站,phpcms 单网页做栏目,bootstrap ui模板,网站后台编码,wordpress页面判断,家庭理财管理系统.net,微信小程序百思不得姐lzw

var oInputField; //考虑到很多函数中都要使用

var oPopDiv; //因此采用全局变量的形式

var oColorsUl;

var aColors = ["red","green","blue","magenta","yellow",……"ivory","darkmagenta","cornfloewrblue"];

aColors.sort(); //按字母排序,使显示结果更友好

function initVars(){ oInputField = document.forms["myForm1"].colors;

oPopDiv = document.getElementByIdx_x("popup");

oColorsUl = document.getElementByIdx_x("colors_ul"); function clearColors(){ for(var i=oColorsUl.childNodes.length-1;i>=0;i--)

oColorsUl.removeChild(oColorsUl.childNodes[i]);

oPopDiv.className = "hide"; function setColors(the_colors){ clearColors(); //每输入一个字母就先清除原先的提示,再继续

oPopDiv.className = "show";

var oLi;

for(var i=0;i<the_colors.length;i++){ oLi = document.createElement_x("li");

oColorsUl.appendChild(oLi);

oLi.appendChild(document.createTextNode(the_colors[i]));

oLi. = function(){

this.className = "mouseOver"; //鼠标经过时高亮 oLi. = function(){

this.className = "mouseOut"; //离开时恢复原样 oLi.onclick = function(){ oInputField.value = this.firstChild.nodeValue;

clearColors(); //同时清除提示框 } function findColors(){

initVars(); //初始化变量

if(oInputField.value.length > 0){

var aResult = new Array(); //用于存放匹配结果

for(var i=0;iaResult.push(aColors[i]); //压入结果

if(aResult.length>0) //如果有匹配的颜色则显示出来

setColors(aResult);

else //否则清除,用户多输入一个字母

clearColors(); //就有可能从有匹配到无,到无的时候需要清除 else

clearColors(); //无输入时清除提示框(例如用户按del键)

文本框输入提示/自动完成的Js代码

文本框输入自动匹配或提示的功能,输入内容,自动匹配对应数据,可用上下键控制选项、按回车键选择,也可以直接用鼠标选择。代码:建立实例,第一个参数是实例对象的名称,第二个是最多显示的数量。

文本框输入提示/自动完成功能function mSift_SeekTp(oObj,nDire){if(oObj.getBoundingClientRect&&!document.all){var oDc=document.documentElement;switch(nDire){case 0:return oObj.getBoundingClientRect().top+oDc.scrollTop;case 1:return oObj.getBoundingClientRect().right+oDc.scrollLeft;case 2:return oObj.getBoundingClientRect().bottom+oDc.scrollTop;case 3:return oObj.getBoundingClientRect().left+oDc.scrollLeft;}}else{if(nDire==1||nDire==3){var nPosition=oObj.offsetLeft;}else{var nPosition=oObj.offsetTop;}if(arguments[arguments.length-1]!=0){if(nDire==1){nPosition+=oObj.offsetWidth;}else if(nDire==2){nPosition+=oObj.offsetHeight;}}if(oObj.offsetParent!=null){nPosition+=mSift_SeekTp(oObj.offsetParent,nDire,0);}return nPosition;}} function mSift(cVarName,nMax){this.oo=cVarName;this.Max=nMax;} mSift.prototype={ Varsion:’v.10.29 by AngusYoung | ’, Target:Object, TgList:Object, Listeners:null, SelIndex:0, Data:[], ReData:[], Create:function(oObj){ var _this=this; var oUL=document.createElement(‘ul’); oUL.style.display=’none’; oObj.parentNode.insertBefore(oUL,oObj); _this.TgList=oUL; oObj.onkeydown=oObj.onclick=function(e){_this.Listen(this,e);}; oObj.onblur=function(){setTimeout(function(){_this.Clear();},100);}; }, Complete:function(){}, Select:function(){ var _this=this; if(_this.ReData.length>0){ _this.Target.value=_this.ReData[_this.SelIndex].replace(/\*/g,’*’).replace(/\|/g,’|’); _this.Clear(); } setTimeout(function(){_this.Target.focus();},10); plete(); }, Listen:function(oObj){ var _this=this; _this.Target=oObj; var e=arguments[arguments.length-1]; var ev=window.event||e; switch(ev.keyCode){ case 9://TAB return; case 13://ENTER _this.Target.blur(); _this.Select(); return; case 38://UP _this.SelIndex=_this.SelIndex>0?_this.SelIndex-1:_this.ReData.length-1; break; case 40://DOWN _this.SelIndex=_this.SelIndex<_this.ReData.length-1?_this.SelIndex+1:0; break; default: _this.SelIndex=0; } if(_this.Listeners){clearInterval(_this.Listeners);} _this.Listeners=setInterval(function(){ _this.Get(); },10); }, Get:function(){ var _this=this; if(_this.Target.value==\){_this.Clear();return;} if(_this.Listeners){clearInterval(_this.Listeners);}; _this.ReData=[]; var cResult=\; for(var i=0;i=0){ _this.ReData.push(_this.Data[i]); if(_this.ReData.length==_this.Max){break;} } } var cRegPattern=_this.Target.value.replace(/\*/g,’*’); cRegPattern=cRegPattern.replace(/\|/g,’|’); cRegPattern=cRegPattern.replace(/\+/g,’\\+’); cRegPattern=cRegPattern.replace(/\./g,’\\.’); cRegPattern=cRegPattern.replace(/\?/g,’\\?’); cRegPattern=cRegPattern.replace(/\^/g,’\\^’); cRegPattern=cRegPattern.replace(/\$/g,’\\$’); cRegPattern=cRegPattern.replace(/\(/g,’\\(‘); cRegPattern=cRegPattern.replace(/\)/g,’\\)’); cRegPattern=cRegPattern.replace(/\[/g,’\\[‘); cRegPattern=cRegPattern.replace(/\]/g,’\\]’); cRegPattern=cRegPattern.replace(/\\/g,’\\\\’); var cRegEx=new RegExp(cRegPattern,’i’); for(var i=0;i=0){ _this.ReData[i]=_this.ReData[i].replace(/\*/g,’*’); } if(_this.Target.value.indexOf(‘|’)>=0){ _this.ReData[i]=_this.ReData[i].replace(/\|/g,’|’); } cResult+=” +_this.ReData[i].replace(cRegEx,function(s){return ”+s+”;});+”; } if(cResult==”){_this.Clear();} else{ _this.TgList.innerHTML=cResult; _this.TgList.style.cssText=’display:block;position:absolute;background:#fff;border:#090 solid 1px;margin:-1px 0 0;padding: 5px;list-style:none;font-size:12px;’; _this.TgList.style.top=mSift_SeekTp(_this.Target,2)+’px’; _this.TgList.style.left=mSift_SeekTp(_this.Target,3)+’px’; _this.TgList.style.width=_this.Target.offsetWidth-12+’px’; } var oLi=_this.TgList.getElementsByTagName(‘li’); if(oLi.length>0){ oLi[_this.SelIndex].style.cssText=’background:#36c;padding:0 5px;line-height:20px;cursor:default;color:#fff;’; } }, ChangeOn:function(oObj){ var oLi=this.TgList.getElementsByTagName(‘li’); for(var i=0;i 友情提示:文本框屏蔽了回车,因此回车键暂不可用。

//建立实例,第一个参数是实例对象的名称,第二个是最多显示的数量 var oo=new mSift(‘oo’,20); //数据 oo.Data=[‘JavaScript特效’,’JS效果’,’Js代码’,’Java特效’,’Javascript代码’,’JS脚本’,’Js是什么意思’,’Java’,’Java游戏’]; //指定文本框对象建立特效 oo.Create(document.getElementById(‘abc’)); var oxo=new mSift(‘oxo’,20); oxo.Data=[‘河北省’,’河南省’,’河源市’,’河套平原’,’河北承德’]; oxo.Create(document.getElementById(‘we’));

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。