文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

uniapp怎么自定义验证码输入框并隐藏光标

2023-07-05 04:51

关注

这篇文章主要讲解了“uniapp怎么自定义验证码输入框并隐藏光标”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“uniapp怎么自定义验证码输入框并隐藏光标”吧!

一. 前言

  1. 点击输入框唤起键盘,蓝框就相当于input的光标,验证码输入错误或者不符合格式要求会将字体以及边框改成红色提示,持续1s,然后清空数据,恢复原边框样式;

  2. 5位验证码输入完毕,点击页面其他位置,隐藏键盘;这时如果发现验证码有误,再次点击输入框又唤起键盘,也能正常删除数字(这里其实做的时候遇到了bug,再次聚焦不能删除错误数字,下文会讲到)。

二. 实现思路

具体实现思路:

总的来说就是,使用for循环去创建5个正方形的view标签,然后创建一个input标签,type=tel,最大输入长度为5(根据需求来设置),再将input伪隐藏掉,获取的值分别放到5个view中展示。

验证码失败后利用v-model双向绑定,清空输入的值,增加错误提示文字和边框样式。

三. 代码实现

父组件

<uni-popup ref="codeInputPopup" background-color="#fff" :mask-click ="false" type="center">     <CodeInput  :codeLength="5"  :disabled="codeBtnDisabled"  @codeInputClose="codeInputClose"  @submitGoodCode="submitGoodCode" /></uni-popup><script>export default {  data() {    return {     intviation_code:'', //邀请码codeBtnDisabled: false //防止接口请求还未返回数据,用户多次点击    }  },  methods: {    // 提交邀请码async submitGoodCode(intviation_code){this.codeBtnDisabled = truethis.intviation_code = intviation_codeconst response =  await this.$api.post('/ebapi/pink_api/secret_intviation_check', {  code: intviation_code})if(response.code === 200){this.codeBtnDisabled = falsethis.$refs.codeInputPopup.close()}else{this.codeBtnDisabled = falsethis.$refs.codeInputPopup.close()this.$api.msg(response.msg) }},codeInputClose(){  this.$refs.codeInputPopup.close()  this.codeBtnDisabled = false}}</script>

子组件

<template>  <view>    <view class="code-popup-top">      <view class="code-title">请输入商品邀请码</view>      <view class="close-icon" @click="codeInputClose">        <uni-icons type="closeempty" size="30" color="#999999" />      </view>    </view>    <!-- 错误提示 -->    <view class="code_errow" v-if="codeColor == '#ff0000'&& !isNum">邀请码必须{{ codeLength }}位数</view>    <view class="code_errow" v-if="codeColor == '#ff0000'&& isNum ">邀请码必须是数字</view>    <view class="code_input_con">      <view        v-for="(item, index) in codeLength"        :key="index"        class="code_input_item"        :        @click="focus = true"      >{{ intviation_code[index] && intviation_code[index] || '' }}</view>      <input        class="cinput"        type="tel"        v-model="intviation_code"        :maxlength="codeLength"        :focus="focus"        :cursor="intviation_code.length"        @focus="focus = true "        @blur="focus = false"      />    </view>    <button      :class="['submit_code_btn', disabled ? 'btn_disabled' : '']"      :disabled="disabled"      @click="submitGoodCode"    >确定</button>  </view></template><script>export default {  data() {    return {      codeColor: '#313131', //自定义错误码颜色      intviation_code: '', //用户输入的验证码      focus: false, // 动态获取焦点的值      isNum: false,    }  },  props: {    codeLength: {      type: Number,      default: 5,    },    disabled: {      type: Boolean,      default: false,    },  },  methods: {    codeInputClose() {      this.intviation_code = ''      this.$emit('codeInputClose')    },    submitGoodCode() {      if (this.intviation_code.length === this.codeLength) {        if (Number(this.intviation_code)) {          this.$emit('submitGoodCode', this.intviation_code)        } else {          this.isNum = true          this.publicErrorSetting()        }      } else {        this.publicErrorSetting()      }    },    // 输入不符合规范,更改样式并清空    publicErrorSetting() {      this.codeColor = '#ff0000'      setTimeout(() => {        this.intviation_code = ''        this.codeColor = '#313131'        this.isNum = false      }, 1000)    },  },}</script><style lang="scss" scoped>.code-popup-top {  display: flex;  justify-content: space-between;  align-items: center;  margin-bottom: 50upx;  .code-title {    font-size: 34upx;    color: #333;    font-weight: bold;    position: relative;    &::before {      content: '';      position: absolute;      bottom: 0;      width: 40upx;      height: 19upx;      background: linear-gradient(        to right,        rgba(57, 181, 74, 1),        rgba(57, 181, 74, 0.1)      );    }  }  .close-icon {    background: #f2f4f7;    border-radius: 50%;    display: flex;    align-items: center;    justify-content: center;  }}.code_errow {  font-size: 30upx;  color: #ff5500;  margin-bottom: 20upx;}.submit_code_btn {  width: 100%;  height: 83upx;  line-height: 83upx;  border-radius: 7upx;  background: #39b54a;  color: #fff;  font-size: 31upx;  text-align: center;  margin-top: 45upx;}.btn_disabled {  color: rgba(255, 255, 255, 0.5) !important;  background-color: rgba(57, 181, 74, 0.4) !important;}.code_input_con {  display: flex;  justify-content: space-around;  position: relative;  .code_input_item {    margin-left: 10upx;    text-align: center;    line-height: 88upx;    border-radius: 14upx;    width: 88upx;    height: 88upx;    font-size: 60upx;    font-weight: bold;    color: #333;    &:last-child {      margin-right: 0;    }  }    .cinput {    position: absolute;    top: 0;    left: -100%;     width: 100%;    height: 100%;  }}</style>

四. 过程中遇到的问题

1)input 的type=&lsquo;number&rsquo;, ios手机正常,光标在内容最后,但Android手机光标有时候在内容最前面,导致聚焦内容删不掉。

修改input 的type = 'tel':cursor="intviation_code.length", 这样cursor属性才生效,并指定focus时光标的位置在内容最后;
type=&lsquo;tel&rsquo;,也会有个小问题,可以输入一些字符,但是我们的需求只能是数字,所以代码中要做限制。就能解决这个问题了。

这个cursor无效的问题,在h6模式应该是type的原因,我试了在type是number或digit时cursor就无效,text、tel、idcard就有效

2)还有另外一种方法

张鑫旭的CSS改变插入光标颜色caret-color简介及其它变色方法
自我测试CSS : caret-color

<template>  <view>      <input        class="cinput"        type="number"        v-model="intviation_code"        :maxlength="codeLength"        :focus="focus"        @focus="focus = true "        @blur="focus = false"      />    </view>  </view></template><script>export default {  data() {    return {      intviation_code: '', //商品邀请码      focus: false,    }  },  methods: {}</script><style lang="scss" scoped>.cinput {    position: absolute;    top: 0;    left: -100%;    width: 200%;    height: 100%;    color: transparent;  //输入文字颜色透明    caret-color: transparent !important; //改变插入光标颜色为透明  }  }  // 考虑兼容性  // 浏览器支持caret-color属性,优先使用caret-color(Chrome/Firefox/Opera);其次使用::first-line方法(Safari);最后忽略(如IE)。  @supports (-webkit-mask: none) and (not (caret-color: transparent)) {    .cinput {      color: transparent !important;    }    .cinput::first-line {      color: transparent !important;    }  }</style>

感谢各位的阅读,以上就是“uniapp怎么自定义验证码输入框并隐藏光标”的内容了,经过本文的学习后,相信大家对uniapp怎么自定义验证码输入框并隐藏光标这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

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

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

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

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

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

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

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