标签:null 输入 substr sub pre asc highlight one class
$(".inputmoney").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)); } });
限制input只能输入金额(类似:100.00|100.9|100)
标签:null 输入 substr sub pre asc highlight one class
原文地址:https://www.cnblogs.com/tangqi9602/p/9842324.html