js 校验商品的价格是否符合folate 类型

  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;
            }
        }

仅供参考。

你可能感兴趣的:(js 校验商品的价格是否符合folate 类型)