//檢驗金額合法性 只能是正數 或小數 function checkMoney(fileds){ $(fileds).keyup(function () { var reg = $(this).val().match(/\d+\.?\d{0,2}/); var txt = ''; if (reg != null) { txt = reg[0]; } $(this).val(txt); }).change(function () { $(this).keypress(); var v = $(this).val(); if (/\.$/.test(v)) { $(this).val(v.substr(0, v.length - 1)); } }); }
js檢驗金額合法性 只能是正數 或小數