文本框输入校验,正则表达式,对电话号码验证时间:2021-04-05 06:18:03验证输入的电话号码,只能输入纯数字,或 “-” 或 “、” 或者空格 onkeyup="this.value=this.value.replace(/[^-\d、/\s]/g, '')"