正则只能输入6位数字

<input type="text" class="sms-input" maxlength="6">

$(".sms-input").bind("keyup blur",function(){
     var smsVal = $(this).val().replace(/[^d.]/g,'');
     $(this).val(smsVal);
});  
原文地址:https://www.cnblogs.com/swt-axios/p/12989204.html