Element Ui form表单 input框禁止输入空格

image.png

 
        
      
// 去所有除空格
    trimLR(val) {
      this.searchFormValues[val] = this.searchFormValues[val].replace(
        /\s+/g,
        '',
      )
    },

目前方法为去掉所有空格。如果需要去除其他位置的空格,更换对应正则即可
1去掉左边空格

str.replace(/^\s*/g,”“);

2去掉右边空格

str.replace(/\s*$/g,”“);

3去掉前后空格

str.replace(/(^\s)|(\s$)/g,”“);

你可能感兴趣的:(Element Ui form表单 input框禁止输入空格)