vue+element项目中过滤输入框特殊字符小结
前端  /  管理员 发布于 4年前   614
可以在main.js中写入方法
Vue.prototype.validSe = function (value, number = 255) {value = value.replace(/[`~*~!@#$%^&*()_\-+=<>?:"{}|,./;'\\[\]・~!@#¥%……&*()――\-+={}|《》?:“”【】、;‘',。、]/g, '').replace(/\s/g, "");if (value.length >= number) {this.$message({type: "warning",message: `输入内容不能超过${number}个字符`});}return value;};
HTML部分
searchForm.logId = validSe (e,15)' placeholder="请输入日志ID">
需要将v-model
拆分为:value和@input
通过以上方法又扩展出以下方法
//只能输汉字Vue.prototype.chineseOnly = function (value) {value = value.replace(/[^\u4E00-\u9FA5]/g, '');return value};//只能输正整数Vue.prototype.idOnly = function (value) {value = value.replace(/[^0-9]/g, '');return value};//不允许输汉字Vue.prototype.noChineseOnly = function (value) {value = value.replace(/[\u4E00-\u9FA5]/g, '');return value}; //逗号和数字Vue.prototype.programIdOnly = function (value) {value = value.replace(/[^0-9,]/g, '');return value};//数字和回车Vue.prototype.idsOnly = function (value) {value = value.replace(/[^\r\n0-9]/g, '');return value};//数值大小限定Vue.prototype.numberLimit = function (value) {value = value.replace(/[^0-9]/g, '');if (value >= 2147483647) {this.$message({type: "warning",message: `最大可输入值为2147483647`});}return value};// 正整数Vue.prototype.onlyPositiveInteger = function (value) {value = String(value).match(/[1-9]\d*/g, "")return value === null ? '' : Number(value[0])};// 正整数(包含0)Vue.prototype.onlyPositiveInteger1 = function (value) {console.log(typeof (value));value = String(value).match(/[1-9]\d*|0/g, "")return value === null ? '' : Number(value[0])};// 负整数Vue.prototype.onlyNegativeInteger = function (value) {value = String(value).match(/^-[1-9]*\d*/g, "")return value === null ? '' : value[0] === '-' ? '-' : value[0] === '-0' ? '' : Number(value[0])};// 负整数(包含0)Vue.prototype.onlyNegativeInteger1 = function (value) {value = String(value).match(/^-[1-9]*\d*|0/g, "")return value === null ? '' : value[0] === '-' ? '-' : Number(value[0])};// 整数Vue.prototype.onlyInteger = function (value) {value = String(value).match(/^-?[1-9]*\d*|0/g, '')return value === null ? '' : value[0] === '-' ? '-' : value[0] === '' ? '' : Number(value[0])};// 整数区间Vue.prototype.onlySection = function (value, min, max) {if (min < 0) {value = String(value).match(/-?[1-9]*\d*/g, "")} else {value = String(value).match(/[1-9]*\d*/g, "")}// value = String(value).match(/-?[1-9]*\d*/g, "")value = value === null ? '' : value[0] === '-' ? '-' : value[0] === '' ? '' : Number(value[0])if (value < min) {return min} else if (value > max) {return max} else {return value}};
总结
以上所述是小编给大家介绍的vue+element项目中过滤输入框特殊字符小结,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号