我正在使用accounting.js,我需要动态格式化值。
$('#<%=txtamount1.ClientID %>').bind('keydown keyup keypress focus blur paste change', function () {
result = accounting.formatMoney(
$('#<%=txtamount1.ClientID %>').val(),
'',
2,
","
);
$('#<%=txtamount.ClientID %>').val(result);
});