检验金额合法性, 只能是正数 或小数(常用js总结)

//检验金额合法性 只能是正数 或小数
function checkMoney(fileds){
$(fileds).keyup(function () {
var reg = $(this).val().match(/\d+\.?\d{,}/);
var txt = '';
if (reg != null) {
txt = reg[];
}
$(this).val(txt);
}).change(function () {
$(this).keypress();
var v = $(this).val();
if (/\.$/.test(v))
{
$(this).val(v.substr(, v.length - ));
}
});
}
js检验金额合法性 只能是正数 或小数
上一篇:iOS 在TabViewController中的一个ViewController跳转到另一种ViewController


下一篇:[转]ELO等级分体系