文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何JavaScript项目中实现一个input组件功能

2023-06-06 15:40

关注

这篇文章主要介绍了如何JavaScript项目中实现一个input组件功能,此处通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考价值,需要的朋友可以参考下:

Java的特点有哪些

Java的特点有哪些1.Java语言作为静态面向对象编程语言的代表,实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程。2.Java具有简单性、面向对象、分布式、安全性、平台独立与可移植性、动态性等特点。3.使用Java可以编写桌面应用程序、Web应用程序、分布式系统和嵌入式系统应用程序等。

HTML:

<!DOCTYPE html><html>  <head>    <meta charset="utf-8">    <title>js实现可清空input组件</title>    <script src="../js/input/jsInput.js"></script>    <link rel="stylesheet" type="text/css" href="../css/jsInput.css"/>  </head>  <body>    <script>      //普通input输入框       document.write(createElementInput())      //添加可清空功能clearable      //document.write(createElementInput("clearable"))      //实现密码框show-password      //document.write(createElementInput("show-password"))    </script>  </body></html>

JS:

function createElementInput(str){  var temp = str;  var html = "<div id='my_input_div' onmouseover='addClearNode(\""+str+"\")'' onmouseout='hiddenClearNode(\""+str+"\")''>";  html += "<input id='my_input' placeholder='请输入内容'";  if(str){     if(str == 'show-password'){       html+=" type = 'password' ";     }  }   html += "oninput='addClearNode(\""+str+"\")'";  html += "onclick='changeColor(\""+str+"\")'";  html += "onblur='hiddenClearNode(\""+str+"\")'/>";  if(str){   html += "<input id='"+str+"' onmousedown='changeValue(\""+str+"\")'/>";  }    html += "</div>"  return html;}//box-shadow: 0 0 0 20px pink; 通过添加阴影的方式显示边框function changeColor(str){  //alert(str)  document.getElementById("my_input_div").style.boxShadow="0 0 0 2px #409eff";  //获取inpu的值  var value = document.getElementById('my_input').value;  var button = document.getElementById(str);  //添加判断 如果输入框中有值 则显示清空按钮  if(value){    if(button){      button.style.visibility = "visible"    }  }}//应该输入内容之后使用该事件function addClearNode(str){  var value = document.getElementById('my_input').value;  var button = document.getElementById(str);  //alert(value)  if(value){    if(button){      //将button设置为可见      button.style.visibility = 'visible'    }  }else{    //判断该属性是否存在    if(button){      //将button设置为不可见      button.style.visibility = 'hidden'    }  }  //选中后div添加选中样式 高亮显示  document.getElementById("my_input_div").style.outline="0 0 0 2px #409eff";}//改变input中的值function changeValue(str){  if(str){    if(str == 'clearable'){      clearValues(str);    }else if(str == 'show-password'){      showPassword();    }  }  }//清空输入值function clearValues(str){  document.getElementById("my_input").value = "";  document.getElementById(str).style.visibility = "hidden";  //仍然处于选中状态 div边框突出阴影  document.getElementById("my_input_div").style.boxShadow="0 0 0 2px #409eff"}//隐藏清除按钮function hiddenClearNode(str){  var button = document.getElementById(str);  if(button){    button.style.visibility="hidden";  }  //将div阴影设置为0  document.getElementById("my_input_div").style.boxShadow="0 0 0"}//显示密码function showPassword(){  var myInput = document.getElementById('my_input');  var password = myInput.value;  var type = myInput.type;  //alert(type)  if(type){    if(type == 'password'){      myInput.type = '';      myInput.value = password;    }else{      myInput.type = 'password';      myInput.value = password;    }  }  //仍然处于选中状态 div边框突出阴影  document.getElementById("my_input_div").style.boxShadow="0 0 0 2px #409eff"}

CSS:

#my_input_div{  width: 150px;  border: 1px solid silver;  border-radius: 4px;  position: relative;}#my_input{  height: 30px;  width:100px;  margin-left: 6px;  border: none;  outline: none;  cursor: pointer;}#clearable{  height: 20px;  width: 15px;  text-align: center;  visibility:hidden;  border: none;  outline: none;  color: #409eff;  cursor: pointer;  background-image: url(../image/clear.svg);  background-repeat: no-repeat;  background-size: 12px;  position: absolute;  top: 10px;  left: 120px;  display: inline-block;}#show-password{  height: 20px;  width: 15px;  text-align: center;  visibility:hidden;  border: none;  outline: none;  color: #409eff;  cursor: pointer;  background-image: url(../image/eye.svg);  background-repeat: no-repeat;  background-size: 12px;  position: absolute;  top: 10px;  left: 120px;  display: inline-block;}

到此这篇关于如何JavaScript项目中实现一个input组件功能的文章就介绍到这了,更多相关如何JavaScript项目中实现一个input组件功能的内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯