我对使用自动数字功能的<input>
有问题。当光标在输入文本字段上移动时,即使我单击了清除搜索按钮,该值仍会重新出现。而输入值似乎无法解析超过1,000,000的值。
$(function(){
if($('form input[type="text"][name*="_format"]').length){
new AutoNumeric.multiple('form input[type="text"][name*="_comma"]', {
vMax: '9999999',
vMin: '0.01',
unformatOnSubmit: true,
modifyValueOnWheel: false,
decimalPlaces: 0,
});
}
});