//检验函数
function NumberCheck(num)
{
var re=/^\d*\.{0,1}\d{0,1}$/;
return re.exec(num) != null;
}
//调用写法
if(!NumberCheck($('#price').val())){
return false;
}else{
return true;
}
转载自:https://blog.csdn.net/ljh243581579/article/details/78625219?locationNum=9&fps=1