正则-限制用户在input text中只能输入数字和"-"号

该方法主要实现,在input输入框中,只能输入电话号码。
包括手机号和座机号(0-9以及-)

<input type='text' "(this.v=function(){this.value=this.value.replace(/[^0-9-]+/,'');}).call(this)" "this.v();" />

猜你喜欢

转载自blog.csdn.net/weixin_42645716/article/details/88870399