正则表达式 大于0的数字(包含小数)
var parnt = /^[1-9]\d*(\.\d+)?$/; if(!parnt.exec(contractAmount)){ alert("必须输入合同金额(数字)!"); return false; }