失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > input输入框限制输入特殊字符

input输入框限制输入特殊字符

时间:2021-11-12 20:23:32

相关推荐

input输入框限制输入特殊字符

html部分:

<input class="form-control" v-model="userName" type="text" placeholder="用户名" @blur="blur" @input="userNameLimit"><input class="form-control" v-model="userPassword" type="password" placeholder="密码" @input="userPasswordLimit">

js部分:

//只能输入英文、数字userPasswordLimit:function() {this.userPassword = this.userPassword.replace(/[^\a-\z\A-\Z0-9]/g, '')},// 限制输入特殊字符userNameLimit:function() {this.userName = this.userName.replace(/[ `~!@#$%^&*()_\-+=<>?:"{}|,.\/;'\\[\]·~!@#¥%……&*()——\-+={}|《》?:“”【】、;‘’,。、]/g, '')},

如果觉得《input输入框限制输入特殊字符》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。