vue 驗證表單 input 不能爲中文。

//html
<el-input v-model="form.name" auto-complete="off" style="width: 336px" @input.native="changeCode"></el-input>

//method
changeCode() {
  this.$nextTick(() => {
    if(this.form.name !== null){
      this.form.name = this.form.name.replace(/[^\w\.\/]/ig,'')
    }
  })
},

但是存在一個問題。只能輸入英文和數字,無法輸入符號之類的。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章