我想显示数字数据。示例(0.115)变为(0,115),但是当我使用输入掩码时,我得到了值(115,00)。 在我使用的inputmasking下面,我需要建议。谢谢
$('.quality').inputmask({
alias:"decimal",
digits:3,
repeat:3,
digitsOptional:false,
decimalProtect:true,
groupSeparator:".",
placeholder: '0',
radixPoint:",",
radixFocus:true,
autoGroup:true,
autoUnmask:false,
allowMinus:false,
onUnMask: function (maskedValue, unmaskedValue) {
var x = unmaskedValue.split(',');
return x[0].replace(/\./g, '') + '.' + x[1];
},
removeMaskOnSubmit:true
});