目前,我正在使用此插件https://github.com/teamdf/jquery-number自动格式化我输入的数字,但是当我输入时遇到了一些问题 999999999999999.99它将舍入到1,000,000,000,000,000.00,我不需要舍入我输入的数字,我只需要用逗号格式化数字, 我需要输入的确切数字,我该怎么办?有什么办法吗?
这是我目前的代码:
$(".numeric-total").blur(function () {
var value = $(this).val();
value = $.number(value.replace(/,/g, ""), 2);
$(this).prop('value', value);
});
答案 0 :(得分:0)
<script>
jQuery(document).ready(function () {
$(".numeric-total").blur(function () {
var value = $(this).val();
value = value.replace(".", ",");
value = $.number(value.replace(/,/g, ""), 2);
alert(value);
$(this).prop('value', value);
});
});
</script>