自动数字系统不允许我输入小数

本文关键字:允许我 输入 小数 不允许 系统 数字 | 更新日期: 2023-09-27 18:19:09

这里我使用自动数字JS。在我的代码中,它不允许我放小数点

代码
 $('.input-qty').autoNumeric('init', { vMin: 0, mDec: 0 }); // It only allows 1,2 like numbers it doen't allow 1.5 like decimal points

自动数字系统不允许我输入小数

From: https://github.com/BobKnothe/autoNumeric:

"vMin" - controls the minimum value allowed
vMin: '0.00' (default)
"mDec" - overrides the decimal places that that are set via the vMin/vMax values
mDec: null (default method)
example - mDec: '4'

小数点后0位。修改代码以允许小数:

 $('.input-qty').autoNumeric('init', { vMin: 0, mDec: 2 });