pc端限制金钱输入格式

只能输入数字,小数点

$("#batch_diff_percent").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));
    }
});

转自熊哥club

posted @ 2017-11-16 14:10  wayne529  阅读(129)  评论(0编辑  收藏  举报