我就废话不多说了,大家还是直接看代码吧~
<Input v-model="relatedWords" type="textarea" placeholder="请输入" @input='verifyInput(formItem.relatedWords)'/>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
verifyInput(v){ let _this= this ; let punctuation = /[`~!@ #$%^&*_\-=<>?:"{}|.\/;'\\[\]·~!@#¥%……&——\-={}|《》?:“”【】、;‘'。、]/im; let arr=v.split( '' ) let str= '' arr.map(i=>{ if (!punctuation.test(i)){ str+=i } }) str=str.replace(/(/g, '(' ) str=str.replace(/)/g, ')' ) str=str.replace(/,/g, ',' ) this .$nextTick(j=>{ this .relatedWords=str }) }, |
补充知识:vue el-input 禁止输入特殊字符 只可输入数字 正则验证
我就废话不多说了,大家还是直接看代码吧~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<el-input size= "small" v-model= "city" placeholder= "请输入城市名称" @blur= "addCity(scope.$index)" @keyup.native= "btKeyUp" @keydown.native= "btKeyDown" ></el-input> // methods内 // 只能输入汉字、英文、数字 btKeyDown(e) { e.target.value = e.target.value.replace(/[^\a-\z\A-\Z0-9\u4E00-\u9FA5]/g, "" ); }, //限制输入特殊字符 btKeyUp(e) { e.target.value = e.target.value.replace(/[`~!@ #$%^&*()_\-+=<>?:"{}|,.\/;'\\[\]·~!@#¥%……&*()——\-+={}|《》?:“”【】、;‘',。、]/g,""); } |
在el-input 内 使用 keyup等事件 需要添加 .native 否则无法正常执行事件
下面是 只可输入数字
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<el-input size= "small" v-model= "scope.row.order_number" v-show= "scope.row.isShowInp_order" @blur= "editOrder(scope.$index,scope.row)" v-focus @keyup.native= "UpNumber" @keydown.native= "UpNumber" class= "table_input" ></el-input> // 只可输入数字 UpNumber(e) { e.target.value = e.target.value.replace(/[^\d]/g, "" ); } |
以上这篇vue.js 输入框输入值自动过滤特殊字符替换中问标点操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_37818095/article/details/106901866