uniapp 禁止textarea/input输入表情

输入框的change事件

changName(e) {
    
    
  e.target.value = e.target.value.replace(/[^\u4E00-\u9FA5|\d|\a-zA-Z|\r\n\s,.?!,。?!…—&$=()-+/*{}[\]]/g, '')
  //重新赋值给input
  this.$nextTick(() => {
    
    
    this.value= e.target.value;
  });
},

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_46319117/article/details/125596196