作者
发布于 2023-12-23 / 89 阅读
0
0

vue 限制 input 小数点后的几位数

export function inputLimit(e) {
    // 通过正则过滤小数点后1位
e.target.value = (e.target.value.match(/^\d*(\.?\d{0})/g)[0]) || null

    // 2位
    e.target.value = (e.target.value.match(/^\d*(\.?\d{0,1})/g)[0]) || null

}

input的写法


评论