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, "")