正则过滤两个小数点

    


oninput(e) {

    var that = this

    // 通过正则过滤小数点后两位

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

    that.sum = e.target.value;

    console.log('e', e.target.value)

}

你可能感兴趣的:(正则过滤两个小数点)