js 验证输入框金额
Posted 一片空白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 验证输入框金额相关的知识,希望对你有一定的参考价值。
$("#ipt1").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 验证输入框金额的主要内容,如果未能解决你的问题,请参考以下文章