在做vue项目中,肯定会遇到过这样的场景,input输入框的手机号或者银行卡号的输入希望四位一分隔,方便查看和纠错,接下来直接上代码解决此类问题。

template(别忘记data里面绑定account):

<el-input type="text" v-model="account" ref="cardInput" placeholder="请输入银行账号" @input="formatCardNumber(account)"></el-input>

 由于使用el-input,所以这样写啦。

js处理数字:

formatCardNumber (cardNum) {
    // 获取input的dom对象,这里因为用的是element ui的input,所以需要这样拿到
    const input = this.$refs.cardInput.$el.getElementsByTagName('input')[0]
    // 获取当前光标的位置
    const cursorIndex = input.selectionStart
    // 字符串中光标之前-的个数
    const lineNumOfCursorLeft = (cardNum.slice(0, cursorIndex).match(/ /g) || []).length
    // 去掉所有-的字符串
    const noLine = cardNum.replace(/ /g, '')
    // 去除格式不对的字符并重新插入-的字符串
    const newCardNum = noLine.replace(/\D+/g, '').replace(/(\d{4})/g, '$1 ').replace(/ $/, '')
    // 改后字符串中原光标之前-的个数
    const newLineNumOfCursorLeft = (newCardNum.slice(0, cursorIndex).match(/ /g) || []).length
    // 光标在改后字符串中应在的位置
    const newCursorIndex = cursorIndex + newLineNumOfCursorLeft - lineNumOfCursorLeft
    // 赋新值,nextTick保证-不能手动输入或删除,只能按照规则自动填入
    this.$nextTick(() => {
      this.account = newCardNum
      // 修正光标位置,nextTick保证在渲染新值后定位光标
      this.$nextTick(() => {
      // selectionStart、selectionEnd分别代表选择一段文本时的开头和结尾位置
        input.selectionStart = newCursorIndex
        input.selectionEnd = newCursorIndex
      })
    })
  },

直接复制到项目中,输入查看效果。

Logo

前往低代码交流专区

更多推荐