function checkprice(e) { var price = $("#Price").val()+"元"; var regu = "(^[1-9]+[\.][0-9]{1,2}[元]?$)|(^[0-9]+[元]?$)|(^[0][元]$)|(^[0][\.][0-9]{1,2}[元]?$)"; var re = new RegExp(regu); if (re.test(price)) { $("#textprice").val($("#Price").val()); } else { alert("改价的金额输入有误!"); return false; } }
仅供参考。
时间: 2024-10-06 10:03:21