<el-input v-model="form.reason" type="textarea" placeholder="请输入理由"/>
this.form.reason.split(' ').join('').length === 0
this.form.reason.split(' ').join('').length === 0的意思是先以空格拆分成数组,再拼接起来,最后判断字符串的长度,如果长度为0证明输入的全是空格
只要有空格都会自动消除,禁止前中后输入空格
<input type="text" class="form-control" id="assetId" onkeyup="this.value=this.value.replace(/[, ]/g,'')"></input>
onkeyup="this.value=this.value.replace(/[, ]/g,'')"
作用:① 在input框里面输入数据的过程中,出现空格,自动消除
② input首尾出现空格,自动消除
③ 复制粘贴的文本里面出现空格,自动消除
禁止前后输入空格,不禁止中间输入空格
<input type="text" name="test" onkeyup="this.value=this.value.replace(/^\s+|\s+$/g,'')"></input>
onkeyup="this.value=this.value.replace(/^\s+|\s+$/g,'')"