2022-04-07 input禁止输入特殊字符

//禁止输入框输入特殊字符

Vue.prototype.validForbid = function(value, number = 255) {

    value = value.replace(/[`~!@#$%^&*()_\-+=<>?:"{}|,./;'\\[\]·~!@#¥%……&*()——\-+={}|《》?:“”【】、;‘’,。、]/g, '').replace(/\s/g, "");

    // if (value.length >= number) {

    //     this.$message({

    //     type: "warning",

    //     message: `输入内容不能超过${number}个字符`

    //     });

    // }

    return value;

}


 @input="e => currentMsg = validForbid(e)"

你可能感兴趣的:(2022-04-07 input禁止输入特殊字符)