我有这样的输入文本:
<input type="text" class="valorMinimoMaximo" />
我的 JS 是这样定义的:
jQuery('.valorMinimoMaximo').priceFormat({
prefix: '',
limit: 6,
centsLimit: 2,
centsSeparator: ',',
thousandsSeparator: '.'
});
即使我没有在此输入文本中输入任何内容,然后按 Tab 或单击其他任何位置,它也会自动获取 0,00 值。有没有办法防止这种行为?