function testNumber(){
var yourinputValue=$("#yourinputId").val();
var reg = /^[1-9]\d*$/; alert(reg.test(yourinputValue))}
本文共 174 字,大约阅读时间需要 1 分钟。
function testNumber(){
var yourinputValue=$("#yourinputId").val();
var reg = /^[1-9]\d*$/; alert(reg.test(yourinputValue))}
转载于:https://www.cnblogs.com/DylanZ/p/6093867.html