function chk() { var patrn = /^\d+(\.\d+)?$/; var result = true; $("input[type=text]").each(function () { if (!patrn.exec(this.value)) { alert("请输入正确的数字!"); result = false; } }) return result; }
时间: 2024-10-11 12:53:56
function chk() { var patrn = /^\d+(\.\d+)?$/; var result = true; $("input[type=text]").each(function () { if (!patrn.exec(this.value)) { alert("请输入正确的数字!"); result = false; } }) return result; }