//检测输入的必须是大于0的整数 function checkNumber (obj) { obj.value = obj.value.replace(/[^\d]/g, ""); //第一位不能为 0 obj.value = obj.value.replace(/^0/g, ""); }