基础示例 保留两位小数

/* HTML */ <input class="input-float" type="text" value="" />
/* JS   */ $('.input-float').inputNumberFormat();

自定义浮点数位数保留四位小数

/* HTML */ <input class="input-float" data-decimal="4" data-decimal-auto="4" type="text" value="" />
/* JS   */ $('.input-float').inputNumberFormat();

整型

/* HTML */ <input class="input-integer" type="text" value="" />
/* JS   */ $('.input-integer').inputNumberFormat({ 'decimal': 0 });

允许负数

/* HTML */ <input class="input-float-negative" type="text" value="" />
/* JS   */ $('.input-float-negative').inputNumberFormat({ 'allowNegative': true});