vue 自定义指令input 只能输入正整数

昔有朝歌夜弦之高楼,上有倾城倾国之舞袖。

我的github: 李大玄
我的私人博客: 李大玄
我的: 李大玄
我的CSDN: 李大玄

  1. 创建文件(自定义指令的文件)


    在这里插入图片描述
import Vue from 'vue'
// 针对 el-input做的限制,只能输入正整数
Vue.directive('Int', {
  bind: function (el) {
    const input = el.getElementsByTagName('input')[0]
    input.onkeyup = function (e) {
      if (input.value.length === 1) {
        input.value = input.value.replace(/[^0-9]/g, '')
      } else {
        input.value = input.value.replace(/[^\d]/g, '')
      }
      trigger(input, 'input')
    }
    input.onblur = function (e) {
      if (input.value.length === 1) {
        input.value = input.value.replace(/[^0-9]/g, '')
      } else {
        input.value = input.value.replace(/[^\d]/g, '')
      }
      trigger(input, 'input')
    }
  }
})
const trigger = (el, type) => {
  const e = document.createEvent('HTMLEvents')
  e.initEvent(type, true, true)
  el.dispatchEvent(e)
}

  1. 在main.js 进行引入 然后就可以使用了


    在这里插入图片描述

    在这里插入图片描述

你可能感兴趣的:(vue 自定义指令input 只能输入正整数)