声明:本站文章均为作者个人原创,图片均为实际截图。如有需要请收藏网站,禁止转载,谢谢配合!!!

1、只允许输入字母

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

2、只允许输入字母、数字

this.content = this.content.replace(/[\u4e00-\u9fa5/\s+/]|[^a-zA-Z0-9\u4E00-\u9FA5]/g, "")

3、只允许输入汉字、字母、数字

this.content = this.content.replace(/[^a-zA-Z0-9\u4E00-\u9FA5]/g, "")